| OLD | NEW |
| 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 # TODO(zra, jamesr): Remove this check once we start building boringssl for | 9 # TODO(zra, jamesr): Remove this check once we start building boringssl for |
| 10 # the fuchsia port. | 10 # the fuchsia port. |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 "io_natives.cc", | 353 "io_natives.cc", |
| 354 "io_natives.h", | 354 "io_natives.h", |
| 355 "embedded_dart_io.cc", | 355 "embedded_dart_io.cc", |
| 356 "embedded_dart_io.h", | 356 "embedded_dart_io.h", |
| 357 "log_android.cc", | 357 "log_android.cc", |
| 358 "log_linux.cc", | 358 "log_linux.cc", |
| 359 "log_macos.cc", | 359 "log_macos.cc", |
| 360 "log_win.cc", | 360 "log_win.cc", |
| 361 "log.h", | 361 "log.h", |
| 362 ] | 362 ] |
| 363 if (is_linux) { |
| 364 sources += [ "../../third_party/root_certificates/root_certificates.cc"] |
| 365 } |
| 363 | 366 |
| 364 include_dirs = [ | 367 include_dirs = [ |
| 365 "..", | 368 "..", |
| 366 "//third_party" | 369 "//third_party" |
| 367 ] | 370 ] |
| 368 } | 371 } |
| 369 } # !is_fuchsia | 372 } # !is_fuchsia |
| 370 | 373 |
| 371 | 374 |
| 372 action("generate_snapshot_bin") { | 375 action("generate_snapshot_bin") { |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 "..", | 460 "..", |
| 458 "../include" | 461 "../include" |
| 459 ] | 462 ] |
| 460 | 463 |
| 461 deps = [ | 464 deps = [ |
| 462 ":dart_snapshot_cc", | 465 ":dart_snapshot_cc", |
| 463 ":libdart_embedder_noio", | 466 ":libdart_embedder_noio", |
| 464 ] | 467 ] |
| 465 } | 468 } |
| 466 } | 469 } |
| OLD | NEW |