| 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 import("../../build/executable_suffix.gni") | 5 import("../../build/executable_suffix.gni") |
| 6 import("../../build/prebuilt_dart_sdk.gni") | 6 import("../../build/prebuilt_dart_sdk.gni") |
| 7 import("gypi_contents.gni") | 7 import("gypi_contents.gni") |
| 8 | 8 |
| 9 config("libdart_vm_config") { | 9 config("libdart_vm_config") { |
| 10 if (defined(is_fuchsia) && is_fuchsia) { | 10 if (defined(is_fuchsia) && is_fuchsia) { |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 ], | 337 ], |
| 338 [ | 338 [ |
| 339 "profiler", | 339 "profiler", |
| 340 processed_gypis.profiler_sdk_sources, | 340 processed_gypis.profiler_sdk_sources, |
| 341 "../../sdk/lib/profiler", | 341 "../../sdk/lib/profiler", |
| 342 "profiler", | 342 "profiler", |
| 343 false, | 343 false, |
| 344 ], | 344 ], |
| 345 [ | 345 [ |
| 346 "typed_data", | 346 "typed_data", |
| 347 processed_gypis.typed_data_sdk_sources, |
| 348 "../../sdk/lib/typed_data", |
| 349 "typed_data", |
| 350 true, |
| 347 processed_gypis.typed_data_runtime_sources, | 351 processed_gypis.typed_data_runtime_sources, |
| 348 "../lib", | 352 "../lib", |
| 349 "typed_data", | |
| 350 false, | |
| 351 ], | 353 ], |
| 352 [ | 354 [ |
| 353 "_vmservice", | 355 "_vmservice", |
| 354 processed_gypis.vmservice_sdk_sources, | 356 processed_gypis.vmservice_sdk_sources, |
| 355 "../../sdk/lib/vmservice", | 357 "../../sdk/lib/vmservice", |
| 356 "vmservice", | 358 "vmservice", |
| 357 true, | 359 true, |
| 358 processed_gypis.vmservice_runtime_sources, | 360 processed_gypis.vmservice_runtime_sources, |
| 359 "../lib", | 361 "../lib", |
| 360 ], | 362 ], |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 | 423 |
| 422 # We list the `patch_sdk.dart` tool here because the [script] (which is | 424 # We list the `patch_sdk.dart` tool here because the [script] (which is |
| 423 # implicitly an input) will call it. | 425 # implicitly an input) will call it. |
| 424 inputs = [ | 426 inputs = [ |
| 425 "../../tools/patch_sdk.dart", | 427 "../../tools/patch_sdk.dart", |
| 426 ] | 428 ] |
| 427 | 429 |
| 428 # Files below are not patches, they will not be in [concatenation_files] | 430 # Files below are not patches, they will not be in [concatenation_files] |
| 429 # but the `patch_sdk.dart` script will copy them into the patched sdk. | 431 # but the `patch_sdk.dart` script will copy them into the patched sdk. |
| 430 inputs += [ | 432 inputs += [ |
| 431 "../lib/typed_data.dart", | |
| 432 "../bin/builtin.dart", | 433 "../bin/builtin.dart", |
| 433 "../bin/vmservice/vmservice_io.dart", | 434 "../bin/vmservice/vmservice_io.dart", |
| 434 "../bin/vmservice/loader.dart", | 435 "../bin/vmservice/loader.dart", |
| 435 "../bin/vmservice/server.dart", | 436 "../bin/vmservice/server.dart", |
| 436 ] | 437 ] |
| 437 | 438 |
| 438 # Add all the normal sdk sources. | 439 # Add all the normal sdk sources. |
| 439 inputs += shared_sdk_sources | 440 inputs += shared_sdk_sources |
| 440 | 441 |
| 441 # Add all the concatenated patch files. | 442 # Add all the concatenated patch files. |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 processed_gypis.vmservice_runtime_sources, | 524 processed_gypis.vmservice_runtime_sources, |
| 524 "../lib", | 525 "../lib", |
| 525 ], | 526 ], |
| 526 [ | 527 [ |
| 527 "io", | 528 "io", |
| 528 processed_gypis.bin_io_sources, | 529 processed_gypis.bin_io_sources, |
| 529 "../bin", | 530 "../bin", |
| 530 ], | 531 ], |
| 531 ] | 532 ] |
| 532 } | 533 } |
| OLD | NEW |