| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 "//base", | 196 "//base", |
| 197 "//base/third_party/dynamic_annotations", | 197 "//base/third_party/dynamic_annotations", |
| 198 "//base:base_static", | 198 "//base:base_static", |
| 199 "//mojo/application", | 199 "//mojo/application", |
| 200 "//mojo/common", | 200 "//mojo/common", |
| 201 "//mojo/common:tracing_impl", | 201 "//mojo/common:tracing_impl", |
| 202 "//mojo/data_pipe_utils", | 202 "//mojo/data_pipe_utils", |
| 203 "//mojo/edk/system", | 203 "//mojo/edk/system", |
| 204 "//mojo/public/cpp/bindings", | 204 "//mojo/public/cpp/bindings", |
| 205 "//mojo/public/interfaces/application", | 205 "//mojo/public/interfaces/application", |
| 206 "//mojo/services/network/public/interfaces", | 206 "//mojo/services/network/interfaces", |
| 207 "//mojo/services/tracing/interfaces", | 207 "//mojo/services/tracing/interfaces", |
| 208 "//services/url_response_disk_cache", | 208 "//services/url_response_disk_cache", |
| 209 "//shell/application_manager", | 209 "//shell/application_manager", |
| 210 "//url", | 210 "//url", |
| 211 ] | 211 ] |
| 212 | 212 |
| 213 public_deps = [ | 213 public_deps = [ |
| 214 ":common_lib", | 214 ":common_lib", |
| 215 ] | 215 ] |
| 216 | 216 |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 632 deps = [ | 632 deps = [ |
| 633 "//base", | 633 "//base", |
| 634 "//mojo/application", | 634 "//mojo/application", |
| 635 "//mojo/application:test_support", | 635 "//mojo/application:test_support", |
| 636 "//mojo/data_pipe_utils", | 636 "//mojo/data_pipe_utils", |
| 637 "//mojo/public/cpp/bindings:callback", | 637 "//mojo/public/cpp/bindings:callback", |
| 638 "//mojo/public/cpp/environment", | 638 "//mojo/public/cpp/environment", |
| 639 "//mojo/public/cpp/system:system", | 639 "//mojo/public/cpp/system:system", |
| 640 "//mojo/services/http_server/cpp", | 640 "//mojo/services/http_server/cpp", |
| 641 "//mojo/services/http_server/interfaces", | 641 "//mojo/services/http_server/interfaces", |
| 642 "//mojo/services/network/public/interfaces", | 642 "//mojo/services/network/interfaces", |
| 643 "//shell/test:bindings", | 643 "//shell/test:bindings", |
| 644 ":embed_pingable", | 644 ":embed_pingable", |
| 645 ] | 645 ] |
| 646 | 646 |
| 647 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] | 647 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] |
| 648 } | 648 } |
| 649 | 649 |
| 650 mojo_native_application("shell_nfc_apptests") { | 650 mojo_native_application("shell_nfc_apptests") { |
| 651 output_name = "shell_nfc_apptests" | 651 output_name = "shell_nfc_apptests" |
| 652 | 652 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 689 "${root_out_dir}/libmojo_shell.so", | 689 "${root_out_dir}/libmojo_shell.so", |
| 690 ] | 690 ] |
| 691 } else { | 691 } else { |
| 692 sources += [ "${root_out_dir}/mojo_shell" ] | 692 sources += [ "${root_out_dir}/mojo_shell" ] |
| 693 } | 693 } |
| 694 | 694 |
| 695 outputs = [ | 695 outputs = [ |
| 696 "${root_out_dir}/symbols/{{source_file_part}}", | 696 "${root_out_dir}/symbols/{{source_file_part}}", |
| 697 ] | 697 ] |
| 698 } | 698 } |
| OLD | NEW |