diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-13 23:18:04 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-13 23:18:04 +0000 |
commit | 9786502bf6b5751c862ceb5f7c55eb9280555d30 (patch) | |
tree | 6f522db0f5f2e8232d57d5129d36373868028773 /BUILD.gn | |
parent | 2e3c2e9ac6e98805d31f5bf333aff9e72c1142be (diff) | |
download | chromium_src-9786502bf6b5751c862ceb5f7c55eb9280555d30.zip chromium_src-9786502bf6b5751c862ceb5f7c55eb9280555d30.tar.gz chromium_src-9786502bf6b5751c862ceb5f7c55eb9280555d30.tar.bz2 |
Hook up content/browser compile in GN build.
I've started changing the way grit headers are included so the include path is relative to the root gen path (liek internal Google does). This also means we don't accumulate another implicit include path for every grit target in the build.
Updates the grit target a bit so that it also includes the generated id file as a dependency, since if this changes everything will need to be re-run.
This adds a bunch of tracing targets required by the content browser build
TBR=scottmg
Review URL: https://codereview.chromium.org/335693004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277124 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -35,7 +35,7 @@ group("root") { "//components/translate:translate_core_browser", "//components/translate:translate_core_common", "//components/url_matcher", - #"//content/public/browser", # Exists but doesn't build yet. + "//content/public/browser", "//content/public/child", "//content/public/common", "//content/public/renderer", @@ -134,6 +134,7 @@ group("root") { if (is_android) { deps -= [ "//cc", + "//content/public/browser", "//content/public/common", "//content/public/renderer", "//dbus", |