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

Side by Side Diff: remoting/android/client_java_tmpl.gni

Issue 1637093002: Fix enable_cardboard/enable_cast for GN build of remoting/android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « remoting/android/BUILD.gn ('k') | remoting/remoting_options.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 import("//build/config/android/rules.gni") 5 import("//build/config/android/rules.gni")
6 import("//remoting/remoting_options.gni") 6 import("//remoting/remoting_options.gni")
7 7
8 template("remoting_android_client_java_tmpl") { 8 template("remoting_android_client_java_tmpl") {
9 android_library(target_name) { 9 android_library(target_name) {
10 DEPRECATED_java_in_dir = "//remoting/android/java/src" 10 DEPRECATED_java_in_dir = "//remoting/android/java/src"
11 java_files = [] 11 java_files = []
12 12
13 if (enable_cast) { 13 if (remoting_enable_cast) {
14 java_files += [ "//remoting/android/cast/src/org/chromium/chromoting/CastE xtensionHandler.java" ] 14 java_files += [ "//remoting/android/cast/src/org/chromium/chromoting/CastE xtensionHandler.java" ]
15 } 15 }
16 16
17 deps = [ 17 deps = [
18 "//base:base_java", 18 "//base:base_java",
19 "//remoting/android:remoting_android_client_java_resources", 19 "//remoting/android:remoting_android_client_java_resources",
20 "//third_party/android_tools:android_support_v13_java", 20 "//third_party/android_tools:android_support_v13_java",
21 "//third_party/android_tools:android_support_v7_appcompat_java", 21 "//third_party/android_tools:android_support_v7_appcompat_java",
22 "//third_party/android_tools:android_support_v7_mediarouter_java", 22 "//third_party/android_tools:android_support_v7_mediarouter_java",
23 "//third_party/cardboard-java", 23 "//third_party/cardboard-java",
24 "//ui/android:ui_java", 24 "//ui/android:ui_java",
25 ] 25 ]
26 26
27 deps += [ invoker.remoting_google_play_services_library ] 27 deps += [ invoker.remoting_google_play_services_library ]
28 } 28 }
29 } 29 }
OLDNEW
« no previous file with comments | « remoting/android/BUILD.gn ('k') | remoting/remoting_options.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698