diff options
author | James Robinson <jamesr@chromium.org> | 2014-09-16 22:20:58 -0700 |
---|---|---|
committer | James Robinson <jamesr@chromium.org> | 2014-09-17 05:21:35 +0000 |
commit | 2ed4d695d6cf2917fc0e52f767d629fbefa7a1f9 (patch) | |
tree | 98118de0c2f3a65e2d6a387819404b041695ec73 /BUILD.gn | |
parent | d3e622b0bb31f20c274bc9ad634b8ee7bae99ac1 (diff) | |
download | chromium_src-2ed4d695d6cf2917fc0e52f767d629fbefa7a1f9.zip chromium_src-2ed4d695d6cf2917fc0e52f767d629fbefa7a1f9.tar.gz chromium_src-2ed4d695d6cf2917fc0e52f767d629fbefa7a1f9.tar.bz2 |
GN: Get //chrome/* mostly working on android
This gets the //chrome subtree down to a fairly small number of build
errors on Android. Most of the changes are making features not enabled
on android like extensions and plugins properly guarded. This also adds
a few jni targets and fixes up some bitrotted bits.
R=brettw@chromium.org, cjhopman@chromium.org
Review URL: https://codereview.chromium.org/571863002
Cr-Commit-Position: refs/heads/master@{#295231}
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 20 |
1 files changed, 6 insertions, 14 deletions
@@ -25,12 +25,9 @@ group("root") { "//cc/blink", "//chrome/browser", "//chrome/browser/devtools", - "//chrome/browser/ui", - "//chrome/browser/ui/views", "//chrome/common", "//chrome/plugin", "//chrome/renderer", - "//chrome/service", "//chrome/utility", "//components:all_components", "//content", @@ -78,7 +75,6 @@ group("root") { "//third_party/iccjpeg", "//third_party/icu", "//third_party/leveldatabase", - "//third_party/libaddressinput", "//third_party/libphonenumber", "//third_party/libjingle", "//third_party/libpng", @@ -183,15 +179,12 @@ group("root") { deps -= [ "//apps", # Needs testing. - "//chrome/browser", # Blocked on content. - "//chrome/browser/devtools", # Blocked on content. - "//chrome/browser/ui", # Blocked on content. - "//chrome/browser/ui/views", # Blocked on content. - "//chrome/common", # Blocked on content. - "//chrome/plugin", # Blocked on content. - "//chrome/renderer", # Blocked on content. - "//chrome/service", # Blocked on content. - "//chrome/utility", # Blocked on content. + "//chrome/browser", + "//chrome/browser/devtools", + "//chrome/common", + "//chrome/plugin", + "//chrome/renderer", + "//chrome/utility", "//content/shell:content_shell", "//extensions/browser", "//extensions/common", @@ -222,7 +215,6 @@ group("root") { "//remoting/client/plugin", "//storage/browser", "//third_party/cld_2", - "//third_party/libaddressinput", "//third_party/ffmpeg", "//ui/app_list", "//ui/web_dialogs", |