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