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 | 26 #GN: //chrome/android::custom_tabs_service_aidl |
27 'target_name': 'custom_tabs_service_aidl', | 27 'target_name': 'custom_tabs_service_aidl', |
28 'type': 'none', | 28 'type': 'none', |
29 'variables': { | 29 'variables': { |
30 'aidl_interface_file': 'java/src/org/chromium/chrome/browser/customtabs/
common.aidl', | 30 'aidl_interface_file': 'java/src/android/support/customtabs/common.aidl'
, |
31 'aidl_import_include': 'java/src/org/chromium/chrome/browser/customtabs'
, | 31 'aidl_import_include': 'java/src/android/support/customtabs', |
32 }, | 32 }, |
33 'sources': [ | 33 'sources': [ |
34 'java/src/org/chromium/chrome/browser/customtabs/ICustomTabsConnectionCa
llback.aidl', | 34 'java/src/android/support/customtabs/ICustomTabsCallback.aidl', |
35 'java/src/org/chromium/chrome/browser/customtabs/ICustomTabsConnectionSe
rvice.aidl', | 35 'java/src/android/support/customtabs/ICustomTabsService.aidl', |
36 ], | 36 ], |
37 'includes': [ '../../build/java_aidl.gypi' ], | 37 'includes': [ '../../build/java_aidl.gypi' ], |
38 }, | 38 }, |
39 { | 39 { |
40 # GN: //chrome/android:chrome_public_template_resources | 40 # GN: //chrome/android:chrome_public_template_resources |
41 'target_name': 'chrome_public_template_resources', | 41 'target_name': 'chrome_public_template_resources', |
42 'type': 'none', | 42 'type': 'none', |
43 'variables': { | 43 'variables': { |
44 'jinja_inputs_base_dir': 'java/res_template', | 44 'jinja_inputs_base_dir': 'java/res_template', |
45 'jinja_inputs': [ | 45 'jinja_inputs': [ |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 ], | 219 ], |
220 }, | 220 }, |
221 ], | 221 ], |
222 } | 222 } |
223 | 223 |
224 # Local Variables: | 224 # Local Variables: |
225 # tab-width:2 | 225 # tab-width:2 |
226 # indent-tabs-mode:nil | 226 # indent-tabs-mode:nil |
227 # End: | 227 # End: |
228 # vim: set expandtab tabstop=2 shiftwidth=2: | 228 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |