summaryrefslogtreecommitdiffstats
path: root/chrome/chrome_exe.gypi
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-01 21:23:51 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-01 21:23:51 +0000
commitdbc05bc4c3c3423260f1e82f3eae8513ba8e47d5 (patch)
tree4644e23ca1f802fd2ea50617debf27954d33bf01 /chrome/chrome_exe.gypi
parent3556d9c3573e4fcdd465a7e2edef53a2c67049ec (diff)
downloadchromium_src-dbc05bc4c3c3423260f1e82f3eae8513ba8e47d5.zip
chromium_src-dbc05bc4c3c3423260f1e82f3eae8513ba8e47d5.tar.gz
chromium_src-dbc05bc4c3c3423260f1e82f3eae8513ba8e47d5.tar.bz2
Cleanup: Merge some OS specific sections in chrome/*.gypi.
BUG=none TEST=none Review URL: http://codereview.chromium.org/9307019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@120106 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome_exe.gypi')
-rw-r--r--chrome/chrome_exe.gypi63
1 files changed, 27 insertions, 36 deletions
diff --git a/chrome/chrome_exe.gypi b/chrome/chrome_exe.gypi
index 5d52924..c35c2f2 100644
--- a/chrome/chrome_exe.gypi
+++ b/chrome/chrome_exe.gypi
@@ -162,6 +162,29 @@
'app/chrome_main_delegate.h',
],
}],
+ ['OS=="linux"', {
+ 'conditions': [
+ ['branding=="Chrome"', {
+ 'dependencies': [
+ 'linux_installer_configs',
+ ],
+ }],
+ ['selinux==0', {
+ 'dependencies': [
+ '../sandbox/sandbox.gyp:sandbox',
+ ],
+ }],
+ # For now, do not build nacl_helper when disable_nacl=1
+ # or when arm is enabled
+ # http://code.google.com/p/gyp/issues/detail?id=239
+ ['disable_nacl==0 and target_arch!="arm"', {
+ 'dependencies': [
+ '../native_client/src/trusted/service_runtime/linux/nacl_bootstrap.gyp:nacl_helper_bootstrap',
+ 'nacl_helper',
+ ],
+ }],
+ ],
+ }],
['OS=="mac"', {
# 'branding' is a variable defined in common.gypi
# (e.g. "Chromium", "Chrome")
@@ -241,6 +264,9 @@
'CHROMIUM_SHORT_NAME': '<(branding)',
},
'dependencies': [
+ # On Mac, make sure we've built chrome_dll, which contains all of
+ # the library code with Chromium functionality.
+ 'chrome_dll',
'helper_app',
'infoplist_strings_tool',
'interpose_dependency_shim',
@@ -381,22 +407,7 @@
],
},
], # postbuilds
- }],
- ['OS=="linux"', {
- 'conditions': [
- ['branding=="Chrome"', {
- 'dependencies': [
- 'linux_installer_configs',
- ],
- }],
- ['selinux==0', {
- 'dependencies': [
- '../sandbox/sandbox.gyp:sandbox',
- ],
- }],
- ],
- }],
- ['OS != "mac"', {
+ }, { # OS != "mac"
'conditions': [
# TODO: add a:
# 'product_name': 'chromium'
@@ -422,26 +433,6 @@
'../third_party/adobe/flash/flash_player.gyp:flash_player',
],
}],
- ['OS=="linux"', {
- 'conditions': [
- # For now, do not build nacl_helper when disable_nacl=1
- # or when arm is enabled
- # http://code.google.com/p/gyp/issues/detail?id=239
- ['disable_nacl==0 and target_arch!="arm"', {
- 'dependencies': [
- '../native_client/src/trusted/service_runtime/linux/nacl_bootstrap.gyp:nacl_helper_bootstrap',
- 'nacl_helper',
- ],
- }],
- ],
- }],
- ['OS=="mac"', {
- 'dependencies': [
- # On Mac, make sure we've built chrome_dll, which contains all of
- # the library code with Chromium functionality.
- 'chrome_dll',
- ],
- }],
['OS=="mac" and asan==1', {
'xcode_settings': {
# Override the outer definition of CHROMIUM_STRIP_SAVE_FILE.