Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / mojo / public / cpp / environment / BUILD.gn
index f99a922..a0d6ca7 100644 (file)
@@ -2,17 +2,31 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-source_set("standalone") {
+source_set("environment") {
   sources = [
-    "../c/environment/async_waiter.h",
-    "../c/environment/logger.h",
+    "logging.h",
     "environment.h",
+  ]
+
+  public_deps = [ "//mojo/public/c/environment" ]
+
+  deps = [ "//mojo/public/cpp/system" ]
+}
+
+source_set("standalone") {
+  sources = [
     "lib/default_async_waiter.cc",
     "lib/default_async_waiter.h",
     "lib/default_logger.cc",
     "lib/default_logger.h",
     "lib/environment.cc",
     "lib/logging.cc",
-    "logging.h",
+  ]
+
+  public_deps = [ ":environment" ]
+
+  deps = [
+    "//mojo/public/c/environment",
+    "//mojo/public/cpp/utility",
   ]
 }