| 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 | 9 |
| 10 | 10 |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 ] | 323 ] |
| 324 } | 324 } |
| 325 set_sources_assignment_filter(custom_sources_filter) | 325 set_sources_assignment_filter(custom_sources_filter) |
| 326 | 326 |
| 327 if (is_mac || is_ios) { | 327 if (is_mac || is_ios) { |
| 328 libs = [ | 328 libs = [ |
| 329 "Security.framework", | 329 "Security.framework", |
| 330 ] | 330 ] |
| 331 } else { | 331 } else { |
| 332 deps = [ | 332 deps = [ |
| 333 "../../third_party/boringssl", | 333 "//third_party/boringssl", |
| 334 ] | 334 ] |
| 335 } | 335 } |
| 336 | 336 |
| 337 sources = io_impl_sources_gypi.sources + builtin_impl_sources_gypi.sources | 337 sources = io_impl_sources_gypi.sources + builtin_impl_sources_gypi.sources |
| 338 sources += [ | 338 sources += [ |
| 339 "builtin_nolib.cc", | 339 "builtin_nolib.cc", |
| 340 "builtin_natives.cc", | 340 "builtin_natives.cc", |
| 341 "io_natives.cc", | 341 "io_natives.cc", |
| 342 "io_natives.h", | 342 "io_natives.h", |
| 343 "embedded_dart_io.cc", | 343 "embedded_dart_io.cc", |
| 344 "embedded_dart_io.h", | 344 "embedded_dart_io.h", |
| 345 "log_android.cc", | 345 "log_android.cc", |
| 346 "log_linux.cc", | 346 "log_linux.cc", |
| 347 "log_macos.cc", | 347 "log_macos.cc", |
| 348 "log_win.cc", | 348 "log_win.cc", |
| 349 "log.h", | 349 "log.h", |
| 350 ] | 350 ] |
| 351 | 351 |
| 352 include_dirs = [ | 352 include_dirs = [ |
| 353 "..", | 353 "..", |
| 354 "//third_party" | 354 "//third_party" |
| 355 ] | 355 ] |
| 356 } | 356 } |
| OLD | NEW |