Include particles in shared Windows builds

Avoids double-compiling SkTextUtils (with different settings),
which is already in the dependent 'skia' target.

Change-Id: I3f803e7ebcc0787b8b47a85d2a5a52fd8e0778db
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/207866
Reviewed-by: Mike Klein <mtklein@google.com>
Reviewed-by: Kevin Lubick <kjlubick@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
diff --git a/modules/particles/BUILD.gn b/modules/particles/BUILD.gn
index 3a3cfa1..a4b8052 100644
--- a/modules/particles/BUILD.gn
+++ b/modules/particles/BUILD.gn
@@ -4,7 +4,7 @@
 # found in the LICENSE file.
 
 declare_args() {
-  skia_enable_particles = !(is_win && is_component_build)
+  skia_enable_particles = true
 }
 
 import("../../gn/skia.gni")
@@ -24,7 +24,6 @@
       "../..:skia",
     ]
     sources = skia_particle_sources
-    sources += [ "../../src/utils/SkTextUtils.cpp" ]
     configs += [ "../../:skia_private" ]
   }
 }