Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 # GN: //chrome:chrome_android_core | 10 # GN: //chrome:chrome_android_core |
| 11 'target_name': 'chrome_android_core', | 11 'target_name': 'chrome_android_core', |
| 12 'type': 'static_library', | 12 'type': 'static_library', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 'chrome.gyp:browser', | 14 'chrome.gyp:browser', |
| 15 'chrome.gyp:browser_ui', | 15 'chrome.gyp:browser_ui', |
| 16 'chrome.gyp:child', | 16 'chrome.gyp:child', |
| 17 'chrome_features.gyp:chrome_common_features', | 17 'chrome_features.gyp:chrome_common_features', |
| 18 'chrome.gyp:plugin', | 18 'chrome.gyp:plugin', |
| 19 'chrome.gyp:renderer', | 19 'chrome.gyp:renderer', |
| 20 'chrome.gyp:utility', | 20 'chrome.gyp:utility', |
| 21 # TODO(kkimlabs): Move this to chrome.gyp:browser when the dependent | 21 # TODO(kkimlabs): Move this to chrome.gyp:browser when the dependent |
| 22 # is upstreamed. | 22 # is upstreamed. |
| 23 '../components/components.gyp:enhanced_bookmarks', | 23 '../components/components.gyp:enhanced_bookmarks', |
| 24 '../components/components.gyp:safe_browsing_db_mobile', | |
|
Nathan Parker
2016/01/20 23:26:54
How did chrome_android_core depend on this code be
vakh (use Gerrit instead)
2016/01/21 01:36:46
Likely through: 'chrome.gyp:browser'
| |
| 24 '../content/content.gyp:content', | 25 '../content/content.gyp:content', |
| 25 '../content/content.gyp:content_app_both', | 26 '../content/content.gyp:content_app_both', |
| 26 ], | 27 ], |
| 27 'include_dirs': [ | 28 'include_dirs': [ |
| 28 '..', | 29 '..', |
| 29 '<(android_ndk_include)', | 30 '<(android_ndk_include)', |
| 30 ], | 31 ], |
| 31 'sources': [ | 32 'sources': [ |
| 32 'app/android/chrome_android_initializer.cc', | 33 'app/android/chrome_android_initializer.cc', |
| 33 'app/android/chrome_android_initializer.h', | 34 'app/android/chrome_android_initializer.h', |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 95 '-f', '<(branding_path)', | 96 '-f', '<(branding_path)', |
| 96 '-e', 'CHANNEL=str.upper("<(android_channel)")', | 97 '-e', 'CHANNEL=str.upper("<(android_channel)")', |
| 97 '<(template_input_path)', | 98 '<(template_input_path)', |
| 98 '<(output_path)', | 99 '<(output_path)', |
| 99 ], | 100 ], |
| 100 }, | 101 }, |
| 101 ], | 102 ], |
| 102 }, | 103 }, |
| 103 ], | 104 ], |
| 104 } | 105 } |
| OLD | NEW |