OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 sources -= [ "base_paths_posix.cc" ] | 43 sources -= [ "base_paths_posix.cc" ] |
44 } | 44 } |
45 | 45 |
46 if (is_nacl) { | 46 if (is_nacl) { |
47 sources -= [ | 47 sources -= [ |
48 "base_paths.cc", | 48 "base_paths.cc", |
49 "base_paths_posix.cc", | 49 "base_paths_posix.cc", |
50 ] | 50 ] |
51 } | 51 } |
52 | 52 |
53 configs += [ ":base_implementation" ] | 53 configs += [ ":base_implementation", "//build/config:precompiled_headers" ] |
54 | 54 |
55 deps = [ | 55 deps = [ |
56 "//base/memory", | 56 "//base/memory", |
57 "//base/process", | 57 "//base/process", |
58 ] | 58 ] |
59 | 59 |
60 visibility = [ ":base" ] | 60 visibility = [ ":base" ] |
61 } | 61 } |
62 | 62 |
63 component("base") { | 63 component("base") { |
(...skipping 1500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1564 | 1564 |
1565 # GYP: //base.gyp:base_java_unittest_support | 1565 # GYP: //base.gyp:base_java_unittest_support |
1566 android_library("base_java_unittest_support") { | 1566 android_library("base_java_unittest_support") { |
1567 deps = [ | 1567 deps = [ |
1568 ":base_java", | 1568 ":base_java", |
1569 ] | 1569 ] |
1570 java_files = | 1570 java_files = |
1571 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1571 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
1572 } | 1572 } |
1573 } | 1573 } |
OLD | NEW |