diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-05 05:01:43 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-05 05:01:43 +0000 |
commit | da0b693b503886c25e1ad650d4f58a0cc8d64cb0 (patch) | |
tree | ae88b046416754dd2852e78244fec02329c4ba02 /apps | |
parent | 4aa6fdf973916ef173012c612f0c8da288f9fc6b (diff) | |
download | chromium_src-da0b693b503886c25e1ad650d4f58a0cc8d64cb0.zip chromium_src-da0b693b503886c25e1ad650d4f58a0cc8d64cb0.tar.gz chromium_src-da0b693b503886c25e1ad650d4f58a0cc8d64cb0.tar.bz2 |
apps: Prettify apps gyp file for readability.
Pass ./tools/gyp/tools/pretty_gyp.py through apps.gpyi and update it.
R=benwells@chromium.org
Review URL: https://chromiumcodereview.appspot.com/12387100
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@186103 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'apps')
-rw-r--r-- | apps/apps.gypi | 78 |
1 files changed, 41 insertions, 37 deletions
diff --git a/apps/apps.gypi b/apps/apps.gypi index 7cd349b..9f03d82 100644 --- a/apps/apps.gypi +++ b/apps/apps.gypi @@ -36,53 +36,57 @@ 'switches.h', ], 'conditions': [ - ['enable_extensions==0', { - 'sources/': [ - ['exclude', '^apps/'], - ], - }], + ['enable_extensions==0', + { + 'sources/': [ + ['exclude', '^apps/'], + ], + } + ], ], # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 'msvs_disabled_warnings': [ 4267, ], }, ], 'conditions': [ - ['OS=="win"', { - 'targets': [ - { - 'target_name': 'app_host', - 'type': 'executable', - 'include_dirs': [ - '..', - ], - 'direct_dependent_settings': { + ['OS=="win"', + { + 'targets': [ + { + 'target_name': 'app_host', + 'type': 'executable', 'include_dirs': [ '..', ], - }, - 'dependencies': [ - '<(DEPTH)/base/base.gyp:base', - '<(DEPTH)/chrome/chrome.gyp:chrome_version_resources', - '<(DEPTH)/chrome/chrome.gyp:launcher_support', - '<(DEPTH)/google_update/google_update.gyp:google_update', - ], - 'sources': [ - 'app_host/app_host.rc', - 'app_host/app_host_main.cc', - 'app_host/app_host_resource.h', - 'app_host/binaries_installer.cc', - 'app_host/binaries_installer.h', - 'app_host/update.cc', - 'app_host/update.h', - '<(SHARED_INTERMEDIATE_DIR)/chrome_version/app_host_exe_version.rc', - ], - 'msvs_settings': { - 'VCLinkerTool': { - 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS + 'direct_dependent_settings': { + 'include_dirs': [ + '..', + ], + }, + 'dependencies': [ + '../base/base.gyp:base', + '../chrome/chrome.gyp:chrome_version_resources', + '../chrome/chrome.gyp:launcher_support', + '../google_update/google_update.gyp:google_update', + ], + 'sources': [ + 'app_host/app_host.rc', + 'app_host/app_host_main.cc', + 'app_host/app_host_resource.h', + 'app_host/binaries_installer.cc', + 'app_host/binaries_installer.h', + 'app_host/update.cc', + 'app_host/update.h', + '<(SHARED_INTERMEDIATE_DIR)/chrome_version/app_host_exe_version.rc', + ], + 'msvs_settings': { + 'VCLinkerTool': { + 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS + }, }, }, - }, - ], - },], # 'OS=="win"' + ], + }, + ], # 'OS=="win"' ], # 'conditions' } |