Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'targets': [ | |
| 7 { | |
| 8 'target_name': 'custom_tabs_client_example_apk', | |
| 9 'type': 'none', | |
| 10 'variables': { | |
| 11 'java_in_dir': 'src/Application/src/main/', | |
| 12 'java_in_dir_suffix': 'java/', | |
| 13 'resource_dir': '<(java_in_dir)/res', | |
| 14 'apk_name': 'CustomTabsClientExample', | |
| 15 'run_findbugs': 0, | |
| 16 }, | |
| 17 'dependencies': [ | |
| 18 'custom_tabs_support_lib', | |
| 19 ], | |
| 20 'includes': [ '../../build/java_apk.gypi' ], | |
| 21 }, | |
| 22 { | |
| 23 'target_name': 'custom_tabs_support_lib', | |
| 24 'type': 'none', | |
| 25 'variables': { | |
| 26 'java_in_dir': 'src/customtabs/src/', | |
| 27 'java_in_dir_suffix': '', | |
| 28 }, | |
| 29 'dependencies': [ | |
| 30 'chrome_custom_tabs_service_aidl', | |
| 31 '../android_tools/android_tools.gyp:android_support_annotations_javalib' , | |
| 32 ], | |
| 33 'includes': [ '../../build/java.gypi' ], | |
| 34 }, | |
| 35 { | |
| 36 'target_name': "chrome_custom_tabs_service_aidl", | |
| 37 'type': 'none', | |
| 38 'variables': { | |
| 39 'java_in_dir': 'src/customtabs/src/android/support/customtabs/', | |
| 40 'java_in_dir_suffix': '', | |
| 41 # The filename should not end with ".aidl", as it upsets gradle. | |
| 42 # 'aidl_interface_file': '<(java_in_dir)/common.aidl.txt', | |
|
cjhopman
2015/08/12 22:52:32
Is this comment useful?
Yusuf
2015/08/12 22:54:05
No... Do you mind if I update that with a follow u
| |
| 43 'aidl_interface_file': 'common.aidl', | |
| 44 }, | |
| 45 'sources': [ | |
| 46 '<(java_in_dir)/ICustomTabsCallback.aidl', | |
| 47 '<(java_in_dir)/ICustomTabsService.aidl', | |
| 48 ], | |
| 49 'includes': [ '../../build/java_aidl.gypi' ], | |
| 50 }, | |
| 51 ], | |
| 52 } | |
| OLD | NEW |