| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//chrome/version.gni") |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 "cronet_c_for_grpc.h", | 100 "cronet_c_for_grpc.h", |
| 101 ] | 101 ] |
| 102 | 102 |
| 103 sources = [ | 103 sources = [ |
| 104 "Cronet.h", | 104 "Cronet.h", |
| 105 "Cronet.mm", | 105 "Cronet.mm", |
| 106 ] | 106 ] |
| 107 | 107 |
| 108 configs -= [ "//build/config/compiler:default_symbols" ] | 108 configs -= [ "//build/config/compiler:default_symbols" ] |
| 109 configs += [ "//build/config/compiler:symbols" ] | 109 configs += [ "//build/config/compiler:symbols" ] |
| 110 configs += [ "//build/config/mac:strip_all" ] | |
| 111 } | 110 } |
| 112 | 111 |
| 113 bundle_data("cronet_test_bundle_data") { | 112 bundle_data("cronet_test_bundle_data") { |
| 114 testonly = true | 113 testonly = true |
| 115 sources = [ | 114 sources = [ |
| 116 "//net/data/ssl/certificates/quic_test.example.com.crt", | 115 "//net/data/ssl/certificates/quic_test.example.com.crt", |
| 117 "//net/data/ssl/certificates/quic_test.example.com.key", | 116 "//net/data/ssl/certificates/quic_test.example.com.key", |
| 118 "//net/data/ssl/certificates/quic_test.example.com.key.pkcs8", | 117 "//net/data/ssl/certificates/quic_test.example.com.key.pkcs8", |
| 119 "//net/data/ssl/certificates/quic_test.example.com.key.sct", | 118 "//net/data/ssl/certificates/quic_test.example.com.key.sct", |
| 120 ] | 119 ] |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 ] | 193 ] |
| 195 } | 194 } |
| 196 | 195 |
| 197 group("cronet_package") { | 196 group("cronet_package") { |
| 198 deps = [ | 197 deps = [ |
| 199 ":cronet_package_copy", | 198 ":cronet_package_copy", |
| 200 ":generate_license", | 199 ":generate_license", |
| 201 ] | 200 ] |
| 202 } | 201 } |
| 203 } | 202 } |
| OLD | NEW |