OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'includes': [ | 5 'includes': [ |
6 '../../chrome/chrome_android_paks.gypi', # Included for the list of pak reso
urces. | 6 '../../chrome/chrome_android_paks.gypi', # Included for the list of pak reso
urces. |
7 '../../build/util/version.gypi' | 7 '../../build/util/version.gypi' |
8 ], | 8 ], |
9 'variables': { | 9 'variables': { |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
11 'package_name': 'chrome_public_apk', | 11 'package_name': 'chrome_public_apk', |
12 'manifest_package': 'org.chromium.chrome', | 12 'manifest_package': 'org.chromium.chrome', |
13 'chrome_public_apk_manifest': '<(SHARED_INTERMEDIATE_DIR)/chrome_public_apk_
manifest/AndroidManifest.xml', | 13 'chrome_public_apk_manifest': '<(SHARED_INTERMEDIATE_DIR)/chrome_public_apk_
manifest/AndroidManifest.xml', |
14 'chrome_public_test_apk_manifest': '<(SHARED_INTERMEDIATE_DIR)/chrome_public
_test_apk_manifest/AndroidManifest.xml', | 14 'chrome_public_test_apk_manifest': '<(SHARED_INTERMEDIATE_DIR)/chrome_public
_test_apk_manifest/AndroidManifest.xml', |
15 # This list is shared with GN. | 15 # This list is shared with GN. |
16 # Defines a list of source files should be present in the open-source | 16 # Defines a list of source files should be present in the open-source |
17 # chrome-apk but not in the published static_library which is included in th
e | 17 # chrome-apk but not in the published static_library which is included in th
e |
18 # real chrome for android. | 18 # real chrome for android. |
19 'chrome_public_app_native_sources': [ | 19 'chrome_public_app_native_sources': [ |
20 '../browser/android/chrome_entry_point.cc', | 20 '../browser/android/chrome_entry_point.cc', |
21 '../browser/android/chrome_main_delegate_staging_android_initializer.cc', | 21 '../browser/android/chrome_main_delegate_staging_android_initializer.cc', |
22 ], | 22 ], |
23 }, | 23 }, |
24 'targets': [ | 24 'targets': [ |
25 { | 25 { |
26 #GN: //chrome/android::custom_tabs_service_aidl | |
27 'target_name': 'custom_tabs_service_aidl', | |
28 'type': 'none', | |
29 'variables': { | |
30 'aidl_interface_file': 'java/src/android/support/customtabs/common.aidl'
, | |
31 'aidl_import_include': 'java/src/android/support/customtabs', | |
32 }, | |
33 'sources': [ | |
34 'java/src/android/support/customtabs/ICustomTabsCallback.aidl', | |
35 'java/src/android/support/customtabs/ICustomTabsService.aidl', | |
36 ], | |
37 'includes': [ '../../build/java_aidl.gypi' ], | |
38 }, | |
39 { | |
40 # GN: //chrome/android:chrome_public_template_resources | 26 # GN: //chrome/android:chrome_public_template_resources |
41 'target_name': 'chrome_public_template_resources', | 27 'target_name': 'chrome_public_template_resources', |
42 'type': 'none', | 28 'type': 'none', |
43 'variables': { | 29 'variables': { |
44 'jinja_inputs_base_dir': 'java/res_template', | 30 'jinja_inputs_base_dir': 'java/res_template', |
45 'jinja_inputs': [ | 31 'jinja_inputs': [ |
46 '<(jinja_inputs_base_dir)/xml/searchable.xml', | 32 '<(jinja_inputs_base_dir)/xml/searchable.xml', |
47 '<(jinja_inputs_base_dir)/xml/syncadapter.xml', | 33 '<(jinja_inputs_base_dir)/xml/syncadapter.xml', |
48 ], | 34 ], |
49 'jinja_outputs_zip': '<(PRODUCT_DIR)/res.java/<(_target_name).zip', | 35 'jinja_outputs_zip': '<(PRODUCT_DIR)/res.java/<(_target_name).zip', |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 ], | 208 ], |
223 }, | 209 }, |
224 ], | 210 ], |
225 } | 211 } |
226 | 212 |
227 # Local Variables: | 213 # Local Variables: |
228 # tab-width:2 | 214 # tab-width:2 |
229 # indent-tabs-mode:nil | 215 # indent-tabs-mode:nil |
230 # End: | 216 # End: |
231 # vim: set expandtab tabstop=2 shiftwidth=2: | 217 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |