| 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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 "//mojo/public/tools:copy_network_service", | 421 "//mojo/public/tools:copy_network_service", |
| 422 ] | 422 ] |
| 423 | 423 |
| 424 if (!is_debug) { | 424 if (!is_debug) { |
| 425 sources += [ | 425 sources += [ |
| 426 "$root_out_dir/authenticating_url_loader_interceptor.mojo", | 426 "$root_out_dir/authenticating_url_loader_interceptor.mojo", |
| 427 "$root_out_dir/dart_content_handler.mojo", | 427 "$root_out_dir/dart_content_handler.mojo", |
| 428 "$root_out_dir/device_info.mojo", | 428 "$root_out_dir/device_info.mojo", |
| 429 "$root_out_dir/icu_data.mojo", | 429 "$root_out_dir/icu_data.mojo", |
| 430 "$root_out_dir/java_handler.mojo", | 430 "$root_out_dir/java_handler.mojo", |
| 431 "$root_out_dir/surfaces_service.mojo", |
| 431 "$root_out_dir/tracing.mojo", | 432 "$root_out_dir/tracing.mojo", |
| 432 ] | 433 ] |
| 433 | 434 |
| 434 deps += [ | 435 deps += [ |
| 435 "//services/authenticating_url_loader_interceptor", | 436 "//services/authenticating_url_loader_interceptor", |
| 436 "//services/java_handler", | 437 "//services/java_handler", |
| 437 "//services/dart:dart_content_handler", | 438 "//services/dart:dart_content_handler", |
| 438 "//services/device_info", | 439 "//services/device_info", |
| 439 "//services/icu_data", | 440 "//services/icu_data", |
| 441 "//services/surfaces", |
| 440 "//services/tracing", | 442 "//services/tracing", |
| 441 ] | 443 ] |
| 442 } | 444 } |
| 443 } | 445 } |
| 444 | 446 |
| 445 copy_ex("copy_mojo_shell_test_assets") { | 447 copy_ex("copy_mojo_shell_test_assets") { |
| 446 clear_dir = true | 448 clear_dir = true |
| 447 dest = mojo_shell_test_assets_dir | 449 dest = mojo_shell_test_assets_dir |
| 448 sources = [ | 450 sources = [ |
| 449 "$root_out_dir/test_app.mojo", | 451 "$root_out_dir/test_app.mojo", |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 "${root_out_dir}/libmojo_shell.so", | 712 "${root_out_dir}/libmojo_shell.so", |
| 711 ] | 713 ] |
| 712 } else { | 714 } else { |
| 713 sources += [ "${root_out_dir}/mojo_shell" ] | 715 sources += [ "${root_out_dir}/mojo_shell" ] |
| 714 } | 716 } |
| 715 | 717 |
| 716 outputs = [ | 718 outputs = [ |
| 717 "${root_out_dir}/symbols/{{source_file_part}}", | 719 "${root_out_dir}/symbols/{{source_file_part}}", |
| 718 ] | 720 ] |
| 719 } | 721 } |
| OLD | NEW |