summaryrefslogtreecommitdiffstats
path: root/content/public
diff options
context:
space:
mode:
Diffstat (limited to 'content/public')
-rw-r--r--content/public/app/BUILD.gn25
-rw-r--r--content/public/plugin/BUILD.gn9
-rw-r--r--content/public/utility/BUILD.gn21
3 files changed, 55 insertions, 0 deletions
diff --git a/content/public/app/BUILD.gn b/content/public/app/BUILD.gn
new file mode 100644
index 0000000..37d2847
--- /dev/null
+++ b/content/public/app/BUILD.gn
@@ -0,0 +1,25 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("app") {
+ sources = [
+ "android_library_loader_hooks.h",
+ "content_main.h",
+ "content_main_delegate.cc",
+ "content_main_delegate.h",
+ "content_main_runner.h",
+ "startup_helper_win.h",
+ ]
+
+ configs += [ "//content:content_implementation" ]
+
+ deps = [
+ "//base",
+ "//base:i18n",
+ "//content:export",
+ "//content/public/plugin",
+ "//content/public/renderer",
+ "//content/public/utility",
+ ]
+}
diff --git a/content/public/plugin/BUILD.gn b/content/public/plugin/BUILD.gn
new file mode 100644
index 0000000..059aea6
--- /dev/null
+++ b/content/public/plugin/BUILD.gn
@@ -0,0 +1,9 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("plugin") {
+ sources = [
+ "content_plugin_client.h",
+ ]
+}
diff --git a/content/public/utility/BUILD.gn b/content/public/utility/BUILD.gn
new file mode 100644
index 0000000..f61994b
--- /dev/null
+++ b/content/public/utility/BUILD.gn
@@ -0,0 +1,21 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("utility") {
+ sources = [
+ "content_utility_client.cc",
+ "content_utility_client.h",
+ "utility_thread.cc",
+ "utility_thread.h",
+ ]
+
+ configs += [ "//content:content_implementation" ]
+
+ deps = [
+ "//base",
+ "//content:export",
+ "//ipc",
+ ]
+}
+