diff options
author | dpranke <dpranke@chromium.org> | 2015-03-07 20:22:47 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-08 04:23:38 +0000 |
commit | db5527d777f1e0cdbaec2bca579bec33aaf7497e (patch) | |
tree | bd5fff2098e9db5fb1cdaafea0e8809b8d2e59b1 /content | |
parent | 53f125e71fe78a1fa0e457622a83487fce117062 (diff) | |
download | chromium_src-db5527d777f1e0cdbaec2bca579bec33aaf7497e.zip chromium_src-db5527d777f1e0cdbaec2bca579bec33aaf7497e.tar.gz chromium_src-db5527d777f1e0cdbaec2bca579bec33aaf7497e.tar.bz2 |
Add remaining trivial targets for the Linux GN build
This patch adds a whole bunch of small targets that
had either already been done but weren't mentioned
in the 'gn_all' group, or needed to be done.
In theory this should produce no change on any platform
other than Linux, except for one small windows target.
R=brettw@chromium.org
TBR=dtu@chromium.org
BUG=432959
CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:android_chromium_gn_compile_dbg,android_chromium_gn_compile_rel;tryserver.chromium.win:win8_chromium_gn_rel,win8_chromium_gn_dbg;tryserver.chromium.mac:mac_chromium_gn_rel,mac_chromium_gn_dbg
Review URL: https://codereview.chromium.org/975123003
Cr-Commit-Position: refs/heads/master@{#319580}
Diffstat (limited to 'content')
-rw-r--r-- | content/BUILD.gn | 15 | ||||
-rw-r--r-- | content/content.gyp | 1 |
2 files changed, 16 insertions, 0 deletions
diff --git a/content/BUILD.gn b/content/BUILD.gn index be1f456..e31ea82 100644 --- a/content/BUILD.gn +++ b/content/BUILD.gn @@ -80,3 +80,18 @@ source_set("export") { "content/common/content_export.h", ] } + +if (is_win) { + source_set("content_startup_helper_win") { + sources = [ + "app/startup_helper_win.cc", + "public/app/startup_helper_win.h", + ] + + deps = [ + "//base", + "//base:i18n", + "//sandbox", + ] + } +} diff --git a/content/content.gyp b/content/content.gyp index 3d73378..a5d4829 100644 --- a/content/content.gyp +++ b/content/content.gyp @@ -31,6 +31,7 @@ ['OS == "win"', { 'targets': [ { + # GN: //content:content_startup_helper_win 'target_name': 'content_startup_helper_win', 'type': 'static_library', 'include_dirs': [ |