OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/config/android/rules.gni") |
| 6 |
| 7 # GYP: //third_party/custom_tabs_client/custom_tabs_client.gyp:custom_tabs_suppo
rt_lib |
| 8 android_library("custom_tabs_support_lib") { |
| 9 srcjar_deps = [ ":custom_tabs_service_aidl" ] |
| 10 deps = [ |
| 11 "//third_party/android_tools:android_support_v13_java", |
| 12 ] |
| 13 DEPRECATED_java_in_dir = "src/customtabs/src/android/support/customtabs/" |
| 14 } |
| 15 |
| 16 # GYP: //third_party/custom_tabs_client/custom_tabs_client.gyp:custom_tabs_servi
ce_aidl |
| 17 android_aidl("custom_tabs_service_aidl") { |
| 18 import_include = "src/customtabs/src" |
| 19 interface_file = "common.aidl" |
| 20 sources = [ |
| 21 "src/customtabs/src/android/support/customtabs/ICustomTabsCallback.aidl", |
| 22 "src/customtabs/src/android/support/customtabs/ICustomTabsService.aidl", |
| 23 ] |
| 24 } |
OLD | NEW |