OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
6 import("//build/config/ios/rules.gni") | 6 import("//build/config/ios/rules.gni") |
7 import("//build/config/mac/symbols.gni") | 7 import("//build/config/mac/symbols.gni") |
8 import("//build/mac/tweak_info_plist.gni") | 8 import("//build/mac/tweak_info_plist.gni") |
9 import("//build/util/version.gni") | 9 import("//build/util/version.gni") |
| 10 import("//chrome/version.gni") |
10 import("//testing/test.gni") | 11 import("//testing/test.gni") |
11 import("//url/features.gni") | 12 import("//url/features.gni") |
12 | 13 |
13 assert(!is_component_build, "CrNet requires static library build.") | 14 assert(!is_component_build, "CrNet requires static library build.") |
14 | 15 |
15 source_set("crnet_sources") { | 16 source_set("crnet_sources") { |
16 deps = [ | 17 deps = [ |
17 "//base:base", | 18 "//base:base", |
18 "//components/metrics:metrics", | 19 "//components/metrics:metrics", |
19 "//components/metrics/proto:proto", | 20 "//components/metrics/proto:proto", |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 | 126 |
126 public_headers = [ "CrNet.h" ] | 127 public_headers = [ "CrNet.h" ] |
127 | 128 |
128 sources = [ | 129 sources = [ |
129 "CrNet.h", | 130 "CrNet.h", |
130 ] | 131 ] |
131 | 132 |
132 configs -= [ "//build/config/compiler:default_symbols" ] | 133 configs -= [ "//build/config/compiler:default_symbols" ] |
133 configs += [ "//build/config/compiler:symbols" ] | 134 configs += [ "//build/config/compiler:symbols" ] |
134 } | 135 } |
OLD | NEW |