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 'conditions': [ | 7 'conditions': [ |
8 ['component != "shared_library" and target_arch != "arm64" and target_arch
!= "x64" and profiling_full_stack_frames != 1', { | 8 ['component != "shared_library" and target_arch != "arm64" and target_arch
!= "x64" and profiling_full_stack_frames != 1', { |
9 # Only enable the chromium linker on regular builds, since the | 9 # Only enable the chromium linker on regular builds, since the |
10 # component build crashes on Android 4.4. See b/11379966 | 10 # component build crashes on Android 4.4. See b/11379966 |
(...skipping 14 matching lines...) Expand all Loading... |
25 'chrome.gyp:browser', | 25 'chrome.gyp:browser', |
26 'chrome.gyp:browser_ui', | 26 'chrome.gyp:browser_ui', |
27 'chrome.gyp:child', | 27 'chrome.gyp:child', |
28 'chrome.gyp:plugin', | 28 'chrome.gyp:plugin', |
29 'chrome.gyp:renderer', | 29 'chrome.gyp:renderer', |
30 'chrome.gyp:utility', | 30 'chrome.gyp:utility', |
31 # TODO(kkimlabs): Move this to chrome.gyp:browser when the dependent | 31 # TODO(kkimlabs): Move this to chrome.gyp:browser when the dependent |
32 # is upstreamed. | 32 # is upstreamed. |
33 '../components/components.gyp:enhanced_bookmarks', | 33 '../components/components.gyp:enhanced_bookmarks', |
34 '../content/content.gyp:content', | 34 '../content/content.gyp:content', |
35 '../content/content.gyp:content_app_browser', | 35 '../content/content.gyp:content_app_both', |
36 ], | 36 ], |
37 'include_dirs': [ | 37 'include_dirs': [ |
38 '..', | 38 '..', |
39 '<(android_ndk_include)', | 39 '<(android_ndk_include)', |
40 ], | 40 ], |
41 'sources': [ | 41 'sources': [ |
42 'app/android/chrome_android_initializer.cc', | 42 'app/android/chrome_android_initializer.cc', |
43 'app/android/chrome_android_initializer.h', | 43 'app/android/chrome_android_initializer.h', |
44 'app/android/chrome_jni_onload.cc', | 44 'app/android/chrome_jni_onload.cc', |
45 'app/android/chrome_main_delegate_android.cc', | 45 'app/android/chrome_main_delegate_android.cc', |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 '-f', '<(branding_path)', | 104 '-f', '<(branding_path)', |
105 '-e', 'CHANNEL=str.upper("<(android_channel)")', | 105 '-e', 'CHANNEL=str.upper("<(android_channel)")', |
106 '<(template_input_path)', | 106 '<(template_input_path)', |
107 '<(output_path)', | 107 '<(output_path)', |
108 ], | 108 ], |
109 }, | 109 }, |
110 ], | 110 ], |
111 }, | 111 }, |
112 ], | 112 ], |
113 } | 113 } |
OLD | NEW |