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

Side by Side Diff: runtime/bin/BUILD.gn

Issue 1739023005: Don't compile in root certs when SSL is disabled in GN build. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 5
6 declare_args() { 6 declare_args() {
7 dart_io_support = false 7 dart_io_support = false
8 } 8 }
9 9
10 10
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 source_set("gen_snapshot_dart_io") { 231 source_set("gen_snapshot_dart_io") {
232 configs += ["..:dart_config",] 232 configs += ["..:dart_config",]
233 233
234 # Set custom sources assignment filter. The custom filters does three things: 234 # Set custom sources assignment filter. The custom filters does three things:
235 # 1) Filters out unnecessary files pulled in from the gypi files. 235 # 1) Filters out unnecessary files pulled in from the gypi files.
236 # 2) Filters out secure socket support. 236 # 2) Filters out secure socket support.
237 # 3) Enables dart:io by filtering out _unsupported.cc implementations. 237 # 3) Enables dart:io by filtering out _unsupported.cc implementations.
238 custom_sources_filter = [ 238 custom_sources_filter = [
239 "*net/nss_memio.cc", 239 "*net/nss_memio.cc",
240 "*net/nss_memio.h", 240 "*net/nss_memio.h",
241 "*root_certificates.cc",
241 "*secure_socket.cc", 242 "*secure_socket.cc",
242 "*secure_socket.h", 243 "*secure_socket.h",
243 "filter.cc", 244 "filter.cc",
244 "*io_service_unsupported.cc", 245 "*io_service_unsupported.cc",
245 "platform_*.cc", 246 "platform_*.cc",
246 "*io_service.cc", 247 "*io_service.cc",
247 "*io_service.h", 248 "*io_service.h",
248 "*_test.cc", 249 "*_test.cc",
249 "*_test.h", 250 "*_test.h",
250 "*dbg*", 251 "*dbg*",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 source_set("embedded_dart_io") { 286 source_set("embedded_dart_io") {
286 configs += ["..:dart_config",] 287 configs += ["..:dart_config",]
287 288
288 # Set custom sources assignment filter. The custom filters does three things: 289 # Set custom sources assignment filter. The custom filters does three things:
289 # 1) Filters out unnecessary files pulled in from the gypi files. 290 # 1) Filters out unnecessary files pulled in from the gypi files.
290 # 2) Filters out secure socket support. 291 # 2) Filters out secure socket support.
291 # 3) Enables dart:io by filtering out _unsupported.cc implementations. 292 # 3) Enables dart:io by filtering out _unsupported.cc implementations.
292 custom_sources_filter = [ 293 custom_sources_filter = [
293 "*net/nss_memio.cc", 294 "*net/nss_memio.cc",
294 "*net/nss_memio.h", 295 "*net/nss_memio.h",
296 "*root_certificates.cc",
295 "*secure_socket.cc", 297 "*secure_socket.cc",
296 "*secure_socket.h", 298 "*secure_socket.h",
297 "*filter_unsupported.cc", 299 "*filter_unsupported.cc",
298 "*io_service_unsupported.cc", 300 "*io_service_unsupported.cc",
299 "*io_service.cc", 301 "*io_service.cc",
300 "*io_service.h", 302 "*io_service.h",
301 "*_test.cc", 303 "*_test.cc",
302 "*_test.h", 304 "*_test.h",
303 "*dbg*", 305 "*dbg*",
304 "builtin.cc", 306 "builtin.cc",
(...skipping 23 matching lines...) Expand all
328 "log_macos.cc", 330 "log_macos.cc",
329 "log_win.cc", 331 "log_win.cc",
330 "log.h", 332 "log.h",
331 ] 333 ]
332 334
333 include_dirs = [ 335 include_dirs = [
334 "..", 336 "..",
335 "//third_party" 337 "//third_party"
336 ] 338 ]
337 } 339 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698