| 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") | |
| 11 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| 12 import("//url/features.gni") | 11 import("//url/features.gni") |
| 13 | 12 |
| 14 assert(!is_component_build, "CrNet requires static library build.") | 13 assert(!is_component_build, "CrNet requires static library build.") |
| 15 | 14 |
| 16 source_set("crnet_sources") { | 15 source_set("crnet_sources") { |
| 17 deps = [ | 16 deps = [ |
| 18 "//base:base", | 17 "//base:base", |
| 19 "//components/metrics:metrics", | 18 "//components/metrics:metrics", |
| 20 "//components/metrics/proto:proto", | 19 "//components/metrics/proto:proto", |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 | 125 |
| 127 public_headers = [ "CrNet.h" ] | 126 public_headers = [ "CrNet.h" ] |
| 128 | 127 |
| 129 sources = [ | 128 sources = [ |
| 130 "CrNet.h", | 129 "CrNet.h", |
| 131 ] | 130 ] |
| 132 | 131 |
| 133 configs -= [ "//build/config/compiler:default_symbols" ] | 132 configs -= [ "//build/config/compiler:default_symbols" ] |
| 134 configs += [ "//build/config/compiler:symbols" ] | 133 configs += [ "//build/config/compiler:symbols" ] |
| 135 } | 134 } |
| OLD | NEW |