Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # This GYPI allows independent customization of the chrome shell in a manner | 5 # This GYPI allows independent customization of the chrome shell in a manner |
| 6 # similar to content shell (in content_shell.gypi). Notably, this file does | 6 # similar to content shell (in content_shell.gypi). Notably, this file does |
| 7 # NOT contain chrome_android_core, which is independent of the chrome shell | 7 # NOT contain chrome_android_core, which is independent of the chrome shell |
| 8 # and should be separately customized. | 8 # and should be separately customized. |
| 9 { | 9 { |
| 10 'variables': { | 10 'variables': { |
| 11 'package_name': 'chrome_shell_apk', | 11 'package_name': 'chrome_shell_apk', |
| 12 }, | 12 }, |
| 13 'targets': [ | 13 'targets': [ |
| 14 { | 14 { |
| 15 # GN: //chrome/android:chrome_shell_base | 15 # GN: //chrome/android:chrome_shell_base |
| 16 'target_name': 'libchromeshell_base', | 16 'target_name': 'libchromeshell_base', |
| 17 'type': 'static_library', | 17 'type': 'static_library', |
| 18 'dependencies': [ | 18 'dependencies': [ |
| 19 '../base/base.gyp:base', | 19 '../base/base.gyp:base', |
| 20 'chrome_android_core', | 20 'chrome_android_core', |
| 21 'chrome.gyp:browser_ui', | 21 'chrome.gyp:browser_ui', |
| 22 '../content/content.gyp:content_app_browser', | 22 '../content/content.gyp:content_app_browser', |
| 23 ], | 23 ], |
| 24 'sources': [ | 24 # TODO(newt): Delete the libchromeshell_base target? |
|
Ted C
2015/01/20 17:52:18
It does seem odd to have no sources, but it would
| |
| 25 'android/shell/chrome_shell_google_location_settings_helper.cc', | 25 #'sources': [ |
| 26 'android/shell/chrome_shell_google_location_settings_helper.h', | 26 # 'android/shell/chrome_shell_google_location_settings_helper.cc', |
| 27 ], | 27 # 'android/shell/chrome_shell_google_location_settings_helper.h', |
| 28 #], | |
| 28 'include_dirs': [ | 29 'include_dirs': [ |
| 29 '../skia/config', | 30 '../skia/config', |
| 30 ], | 31 ], |
| 31 'direct_dependent_settings': { | 32 'direct_dependent_settings': { |
| 32 'ldflags': [ | 33 'ldflags': [ |
| 33 # Some android targets still depend on --gc-sections to link. | 34 # Some android targets still depend on --gc-sections to link. |
| 34 # TODO: remove --gc-sections for Debug builds (crbug.com/159847). | 35 # TODO: remove --gc-sections for Debug builds (crbug.com/159847). |
| 35 '-Wl,--gc-sections', | 36 '-Wl,--gc-sections', |
| 36 ], | 37 ], |
| 37 }, | 38 }, |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 197 'target_name': 'chrome_sync_shell_apk_java', | 198 'target_name': 'chrome_sync_shell_apk_java', |
| 198 'type': 'none', | 199 'type': 'none', |
| 199 'dependencies': [ | 200 'dependencies': [ |
| 200 'chrome_sync_shell_apk', | 201 'chrome_sync_shell_apk', |
| 201 ], | 202 ], |
| 202 'includes': [ '../build/apk_fake_jar.gypi' ], | 203 'includes': [ '../build/apk_fake_jar.gypi' ], |
| 203 }, | 204 }, |
| 204 ], | 205 ], |
| 205 | 206 |
| 206 } | 207 } |
| OLD | NEW |