| 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 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 "$root_out_dir/icu_data.mojo", | 427 "$root_out_dir/icu_data.mojo", |
| 428 "$root_out_dir/java_handler.mojo", | 428 "$root_out_dir/java_handler.mojo", |
| 429 "$root_out_dir/kiosk_wm.mojo", | 429 "$root_out_dir/kiosk_wm.mojo", |
| 430 "$root_out_dir/surfaces_service.mojo", | 430 "$root_out_dir/surfaces_service.mojo", |
| 431 "$root_out_dir/tracing.mojo", | 431 "$root_out_dir/tracing.mojo", |
| 432 "$root_out_dir/view_manager.mojo", | 432 "$root_out_dir/view_manager.mojo", |
| 433 ] | 433 ] |
| 434 | 434 |
| 435 deps += [ | 435 deps += [ |
| 436 "//services/authenticating_url_loader_interceptor", | 436 "//services/authenticating_url_loader_interceptor", |
| 437 "//services/android:java_handler", | 437 "//services/java_handler", |
| 438 "//services/dart:dart_content_handler", | 438 "//services/dart:dart_content_handler", |
| 439 "//services/device_info", | 439 "//services/device_info", |
| 440 "//services/icu_data", | 440 "//services/icu_data", |
| 441 "//services/kiosk_wm", | 441 "//services/kiosk_wm", |
| 442 "//services/surfaces", | 442 "//services/surfaces", |
| 443 "//services/tracing", | 443 "//services/tracing", |
| 444 "//services/view_manager", | 444 "//services/view_manager", |
| 445 ] | 445 ] |
| 446 } | 446 } |
| 447 } | 447 } |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 714 "${root_out_dir}/libmojo_shell.so", | 714 "${root_out_dir}/libmojo_shell.so", |
| 715 ] | 715 ] |
| 716 } else { | 716 } else { |
| 717 sources += [ "${root_out_dir}/mojo_shell" ] | 717 sources += [ "${root_out_dir}/mojo_shell" ] |
| 718 } | 718 } |
| 719 | 719 |
| 720 outputs = [ | 720 outputs = [ |
| 721 "${root_out_dir}/symbols/{{source_file_part}}", | 721 "${root_out_dir}/symbols/{{source_file_part}}", |
| 722 ] | 722 ] |
| 723 } | 723 } |
| OLD | NEW |