Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(848)

Side by Side Diff: third_party/custom_tabs_client/BUILD.gn

Issue 1303023002: Use third_party/custom_tabs_client as the src for customtabs library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698