Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 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 | 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'custom_tabs_client_example_apk', | 8 'target_name': 'custom_tabs_client_example_apk', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'variables': { | 10 'variables': { |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 33 'includes': [ '../../build/java.gypi' ], | 33 'includes': [ '../../build/java.gypi' ], |
| 34 }, | 34 }, |
| 35 { | 35 { |
| 36 'target_name': 'custom_tabs_support_lib', | 36 'target_name': 'custom_tabs_support_lib', |
| 37 'type': 'none', | 37 'type': 'none', |
| 38 'variables': { | 38 'variables': { |
| 39 'java_in_dir': 'src/customtabs/src/', | 39 'java_in_dir': 'src/customtabs/src/', |
| 40 'java_in_dir_suffix': '', | 40 'java_in_dir_suffix': '', |
| 41 }, | 41 }, |
| 42 'dependencies': [ | 42 'dependencies': [ |
| 43 'chrome_custom_tabs_service_aidl', | 43 'custom_tabs_service_aidl', |
| 44 '../android_tools/android_tools.gyp:android_support_annotations_javalib' , | 44 '../android_tools/android_tools.gyp:android_support_v13_javalib', |
|
Benoit L
2015/08/21 11:20:47
Stupid question: Doesn't this bloat the final .dex
pasko
2015/08/21 11:54:57
content_java already depends on it :(
Still a con
| |
| 45 ], | 45 ], |
| 46 'includes': [ '../../build/java.gypi' ], | 46 'includes': [ '../../build/java.gypi' ], |
| 47 }, | 47 }, |
| 48 { | 48 { |
| 49 'target_name': "chrome_custom_tabs_service_aidl", | 49 'target_name': "custom_tabs_service_aidl", |
| 50 'type': 'none', | 50 'type': 'none', |
| 51 'variables': { | 51 'variables': { |
| 52 'java_in_dir': 'src/customtabs/src/android/support/customtabs/', | 52 'java_in_dir': 'src/customtabs/src/android/support/customtabs/', |
| 53 'java_in_dir_suffix': '', | 53 'java_in_dir_suffix': '', |
| 54 # The filename should not end with ".aidl", as it upsets gradle. | 54 # The filename should not end with ".aidl", as it upsets gradle. |
| 55 # 'aidl_interface_file': '<(java_in_dir)/common.aidl.txt', | 55 # 'aidl_interface_file': '<(java_in_dir)/common.aidl.txt', |
| 56 'aidl_interface_file': 'common.aidl', | 56 'aidl_interface_file': 'common.aidl', |
| 57 }, | 57 }, |
| 58 'sources': [ | 58 'sources': [ |
| 59 '<(java_in_dir)/ICustomTabsCallback.aidl', | 59 '<(java_in_dir)/ICustomTabsCallback.aidl', |
| 60 '<(java_in_dir)/ICustomTabsService.aidl', | 60 '<(java_in_dir)/ICustomTabsService.aidl', |
| 61 ], | 61 ], |
| 62 'includes': [ '../../build/java_aidl.gypi' ], | 62 'includes': [ '../../build/java_aidl.gypi' ], |
| 63 }, | 63 }, |
| 64 ], | 64 ], |
| 65 } | 65 } |
| OLD | NEW |