diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-10 22:00:37 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-10 22:00:37 +0000 |
commit | b9f4c684a708d9d7e2f8076beb77b3382ae75667 (patch) | |
tree | 356760b8dc54a50c46d8af2fbc0414138331164a /components/BUILD.gn | |
parent | 2501ca5dbd5f1a495b306937c7fed7c32698c943 (diff) | |
download | chromium_src-b9f4c684a708d9d7e2f8076beb77b3382ae75667.zip chromium_src-b9f4c684a708d9d7e2f8076beb77b3382ae75667.tar.gz chromium_src-b9f4c684a708d9d7e2f8076beb77b3382ae75667.tar.bz2 |
Add components and CLD to GN build.
New components:
- rappor
- data_reduction_proxy
- captive_portal
- translate
- usb_service
- web_modal
Removes the _IMPLEMENTATION define for web_modal. It is unused (it is a static library, not a component).
Adds third_party/cld and third_party/cld_2 BUILD files.
Separates out the include dir setting of "//" and the root gen directory so. cld_2 needed to not have this due to base file name conflicts.
R=jamesr@chromium.org
Review URL: https://codereview.chromium.org/382663002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282438 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/BUILD.gn')
-rw-r--r-- | components/BUILD.gn | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/components/BUILD.gn b/components/BUILD.gn index 56ae457..0f11fcc 100644 --- a/components/BUILD.gn +++ b/components/BUILD.gn @@ -8,10 +8,14 @@ group("all_components") { visibility = "//:*" # Only for the root targets to bring in. deps = [ + "//components/autocomplete", "//components/autofill/content/browser", "//components/autofill/content/common", "//components/autofill/content/renderer", + "//components/captive_portal", "//components/cloud_devices/common", + "//components/data_reduction_proxy/browser", + "//components/data_reduction_proxy/common", "//components/dom_distiller/core", "//components/domain_reliability", "//components/favicon_base", @@ -28,19 +32,25 @@ group("all_components") { "//components/policy", "//components/pref_registry", "//components/query_parser", + "//components/rappor", "//components/resources:components_resources", "//components/startup_metric_utils", "//components/strings", "//components/tracing", - "//components/translate:translate_core_browser", - "//components/translate:translate_core_common", + "//components/translate/content/browser", + "//components/translate/content/common", + "//components/translate/content/renderer", + "//components/translate/core/browser", + "//components/translate/core/common", "//components/url_fixer", "//components/url_matcher", + "//components/usb_service", "//components/user_prefs", "//components/variations", "//components/visitedlink/browser", "//components/visitedlink/common", - "//components/visitedlink/renderer", # Blocked on blink + "//components/visitedlink/renderer", + "//components/web_modal", ] if (is_win || is_mac) { @@ -55,10 +65,14 @@ group("all_components") { if (is_android) { deps -= [ + "//components/autocomplete", # Should work, needs checking. "//components/autofill/content/browser", # Blocked on content/blink. "//components/autofill/content/common", # Blocked on content. "//components/autofill/content/renderer", # Blocked on content/blink. + "//components/captive_portal", # Should work, needs checking. "//components/cloud_devices/common", # Should work, needs checking. + "//components/data_reduction_proxy/browser", # Should work, needs checking. + "//components/data_reduction_proxy/common", # Should work, needs checking. "//components/dom_distiller/core", # Blocked on content. "//components/domain_reliability", # Blocked on content. "//components/favicon_base", # Should work, needs checking. @@ -69,10 +83,16 @@ group("all_components") { "//components/json_schema", # Should work, needs checking. "//components/keyed_service/content", # Blocked on content. "//components/policy", # Blocked on content (indirectly via autofill). + "//components/rappor", # Should work, needs checking. + "//components/translate/content/browser", # Blocked on content. + "//components/translate/content/common", # Blocked on content. + "//components/translate/content/renderer", # Blocked on content. + "//components/usb_service", # Blocked on content. "//components/user_prefs", # Blocked on content. "//components/visitedlink/browser", # Blocked on content. "//components/visitedlink/common", # Blocked on content. "//components/visitedlink/renderer", # Blocked on blink + "//components/web_modal", # Blocked on content. ] } } |