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

Side by Side Diff: base/BUILD.gn

Issue 1207903002: Windows precompiled header support in GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 | « no previous file | build/config/BUILD.gn » ('j') | tools/gn/config_values_generator.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | build/config/BUILD.gn » ('j') | tools/gn/config_values_generator.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698