OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//mojo/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
9 import("//mojo/tools/embed/rules.gni") | 9 import("//mojo/tools/embed/rules.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 "//mojo/public/tools:copy_network_service", | 424 "//mojo/public/tools:copy_network_service", |
425 ] | 425 ] |
426 | 426 |
427 if (!is_debug) { | 427 if (!is_debug) { |
428 sources += [ | 428 sources += [ |
429 "$root_out_dir/authenticating_url_loader_interceptor.mojo", | 429 "$root_out_dir/authenticating_url_loader_interceptor.mojo", |
430 "$root_out_dir/dart_content_handler.mojo", | 430 "$root_out_dir/dart_content_handler.mojo", |
431 "$root_out_dir/device_info.mojo", | 431 "$root_out_dir/device_info.mojo", |
432 "$root_out_dir/icu_data.mojo", | 432 "$root_out_dir/icu_data.mojo", |
433 "$root_out_dir/java_handler.mojo", | 433 "$root_out_dir/java_handler.mojo", |
434 "$root_out_dir/surfaces_service.mojo", | |
435 "$root_out_dir/tracing.mojo", | 434 "$root_out_dir/tracing.mojo", |
436 ] | 435 ] |
437 | 436 |
438 deps += [ | 437 deps += [ |
439 "//services/authenticating_url_loader_interceptor", | 438 "//services/authenticating_url_loader_interceptor", |
440 "//services/dart:dart_content_handler", | 439 "//services/dart:dart_content_handler", |
441 "//services/device_info", | 440 "//services/device_info", |
442 "//services/icu_data", | 441 "//services/icu_data", |
443 "//services/java_handler", | 442 "//services/java_handler", |
444 "//services/surfaces", | |
445 "//services/tracing", | 443 "//services/tracing", |
446 ] | 444 ] |
447 } | 445 } |
448 } | 446 } |
449 | 447 |
450 copy_ex("copy_mojo_shell_test_assets") { | 448 copy_ex("copy_mojo_shell_test_assets") { |
451 clear_dir = true | 449 clear_dir = true |
452 dest = mojo_shell_test_assets_dir | 450 dest = mojo_shell_test_assets_dir |
453 sources = [ | 451 sources = [ |
454 "$root_out_dir/test_app.mojo", | 452 "$root_out_dir/test_app.mojo", |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 "${root_out_dir}/libmojo_shell.so", | 713 "${root_out_dir}/libmojo_shell.so", |
716 ] | 714 ] |
717 } else { | 715 } else { |
718 sources += [ "${root_out_dir}/mojo_shell" ] | 716 sources += [ "${root_out_dir}/mojo_shell" ] |
719 } | 717 } |
720 | 718 |
721 outputs = [ | 719 outputs = [ |
722 "${root_out_dir}/symbols/{{source_file_part}}", | 720 "${root_out_dir}/symbols/{{source_file_part}}", |
723 ] | 721 ] |
724 } | 722 } |
OLD | NEW |