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 'package_name': 'chrome_shell_apk', | 7 'package_name': 'chrome_shell_apk', |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 'chrome_android_paks.gypi', # Included for the list of pak resources. | 10 'chrome_android_paks.gypi', # Included for the list of pak resources. |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 91 }, | 91 }, |
| 92 { | 92 { |
| 93 'target_name': 'chrome_android_core', | 93 'target_name': 'chrome_android_core', |
| 94 'type': 'static_library', | 94 'type': 'static_library', |
| 95 'dependencies': [ | 95 'dependencies': [ |
| 96 'chrome.gyp:browser', | 96 'chrome.gyp:browser', |
| 97 'chrome.gyp:browser_ui', | 97 'chrome.gyp:browser_ui', |
| 98 'chrome.gyp:plugin', | 98 'chrome.gyp:plugin', |
| 99 'chrome.gyp:renderer', | 99 'chrome.gyp:renderer', |
| 100 'chrome.gyp:utility', | 100 'chrome.gyp:utility', |
| 101 '../components/components.gyp:enhanced_bookmarks', | |
|
Yaron
2014/06/11 21:54:35
How about adding a TODO(kkimlabs): Move this to ch
Kibeom Kim (inactive)
2014/06/11 22:02:20
Done.
| |
| 101 '../content/content.gyp:content', | 102 '../content/content.gyp:content', |
| 102 '../content/content.gyp:content_app_browser', | 103 '../content/content.gyp:content_app_browser', |
| 103 ], | 104 ], |
| 104 'include_dirs': [ | 105 'include_dirs': [ |
| 105 '..', | 106 '..', |
| 106 '<(android_ndk_include)', | 107 '<(android_ndk_include)', |
| 107 ], | 108 ], |
| 108 'sources': [ | 109 'sources': [ |
| 109 'app/android/chrome_android_initializer.cc', | 110 'app/android/chrome_android_initializer.cc', |
| 110 'app/android/chrome_android_initializer.h', | 111 'app/android/chrome_android_initializer.h', |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 131 { | 132 { |
| 132 'destination': '<(chrome_android_pak_output_folder)', | 133 'destination': '<(chrome_android_pak_output_folder)', |
| 133 'files': [ | 134 'files': [ |
| 134 '<@(chrome_android_pak_input_resources)', | 135 '<@(chrome_android_pak_input_resources)', |
| 135 ], | 136 ], |
| 136 } | 137 } |
| 137 ], | 138 ], |
| 138 }, | 139 }, |
| 139 ], | 140 ], |
| 140 } | 141 } |
| OLD | NEW |