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 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
666 "//mojo/application", | 666 "//mojo/application", |
667 "//mojo/application:test_support", | 667 "//mojo/application:test_support", |
668 "//mojo/converters/base", | 668 "//mojo/converters/base", |
669 "//mojo/data_pipe_utils", | 669 "//mojo/data_pipe_utils", |
670 "//mojo/public/cpp/bindings:callback", | 670 "//mojo/public/cpp/bindings:callback", |
671 "//mojo/public/cpp/environment", | 671 "//mojo/public/cpp/environment", |
672 "//mojo/public/cpp/system:system", | 672 "//mojo/public/cpp/system:system", |
673 "//mojo/public/interfaces/application", | 673 "//mojo/public/interfaces/application", |
674 "//mojo/services/http_server/cpp", | 674 "//mojo/services/http_server/cpp", |
675 "//mojo/services/http_server/interfaces", | 675 "//mojo/services/http_server/interfaces", |
| 676 "//mojo/services/http_server/interfaces:interfaces_sync", |
676 "//mojo/services/network/interfaces", | 677 "//mojo/services/network/interfaces", |
677 "//shell/test:bindings", | 678 "//shell/test:bindings", |
678 ] | 679 ] |
679 | 680 |
680 data_deps = [ | 681 data_deps = [ |
681 "//services/http_server:http_server($default_toolchain)", | 682 "//services/http_server:http_server($default_toolchain)", |
682 ] | 683 ] |
683 } | 684 } |
684 | 685 |
685 mojo_native_application("shell_nfc_apptests") { | 686 mojo_native_application("shell_nfc_apptests") { |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
724 "${root_out_dir}/libmojo_shell.so", | 725 "${root_out_dir}/libmojo_shell.so", |
725 ] | 726 ] |
726 } else { | 727 } else { |
727 sources += [ "${root_out_dir}/mojo_shell" ] | 728 sources += [ "${root_out_dir}/mojo_shell" ] |
728 } | 729 } |
729 | 730 |
730 outputs = [ | 731 outputs = [ |
731 "${root_out_dir}/symbols/{{source_file_part}}", | 732 "${root_out_dir}/symbols/{{source_file_part}}", |
732 ] | 733 ] |
733 } | 734 } |
OLD | NEW |