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

Side by Side Diff: build/secondary/third_party/android_tools/BUILD.gn

Issue 595073002: Replace forward_dependent_configs with public_deps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 6
7 config("cpu_features_include") { 7 config("cpu_features_include") {
8 include_dirs = [ "ndk/sources/android/cpufeatures" ] 8 include_dirs = [ "ndk/sources/android/cpufeatures" ]
9 } 9 }
10 10
11 # This is the GN version of 11 # This is the GN version of
12 # //build/android/cpufeatures.gypi:cpufeatures 12 # //build/android/cpufeatures.gypi:cpufeatures
13 source_set("cpu_features") { 13 source_set("cpu_features") {
14 sources = [ "ndk/sources/android/cpufeatures/cpu-features.c" ] 14 sources = [ "ndk/sources/android/cpufeatures/cpu-features.c" ]
15 direct_dependent_configs = [ ":cpu_features_include" ] 15 public_configs = [ ":cpu_features_include" ]
16 16
17 configs -= [ "//build/config/compiler:chromium_code" ] 17 configs -= [ "//build/config/compiler:chromium_code" ]
18 configs += [ "//build/config/compiler:no_chromium_code" ] 18 configs += [ "//build/config/compiler:no_chromium_code" ]
19 } 19 }
20 20
21 android_java_prebuilt("android_gcm_java") { 21 android_java_prebuilt("android_gcm_java") {
22 jar_path = "$android_sdk_root/extras/google/gcm/gcm-client/dist/gcm.jar" 22 jar_path = "$android_sdk_root/extras/google/gcm/gcm-client/dist/gcm.jar"
23 } 23 }
24 24
25 android_java_prebuilt("uiautomator_java") { 25 android_java_prebuilt("uiautomator_java") {
(...skipping 28 matching lines...) Expand all
54 custom_package = "android.support.v7.mediarouter" 54 custom_package = "android.support.v7.mediarouter"
55 } 55 }
56 56
57 android_java_prebuilt("android_support_v7_mediarouter_java") { 57 android_java_prebuilt("android_support_v7_mediarouter_java") {
58 deps = [ 58 deps = [
59 ":android_support_v7_mediarouter_resources", 59 ":android_support_v7_mediarouter_resources",
60 ":android_support_v7_appcompat_java", 60 ":android_support_v7_appcompat_java",
61 ] 61 ]
62 jar_path = "$android_sdk_root/extras/android/support/v7/mediarouter/libs/andro id-support-v7-mediarouter.jar" 62 jar_path = "$android_sdk_root/extras/android/support/v7/mediarouter/libs/andro id-support-v7-mediarouter.jar"
63 } 63 }
OLDNEW
« no previous file with comments | « build/secondary/testing/gtest/BUILD.gn ('k') | build/secondary/third_party/cacheinvalidation/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698