| 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 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 ] | 643 ] |
| 644 | 644 |
| 645 deps = [ | 645 deps = [ |
| 646 "//base", | 646 "//base", |
| 647 "//mojo/application", | 647 "//mojo/application", |
| 648 "//mojo/application:test_support", | 648 "//mojo/application:test_support", |
| 649 "//mojo/data_pipe_utils", | 649 "//mojo/data_pipe_utils", |
| 650 "//mojo/public/cpp/bindings:callback", | 650 "//mojo/public/cpp/bindings:callback", |
| 651 "//mojo/public/cpp/environment", | 651 "//mojo/public/cpp/environment", |
| 652 "//mojo/public/cpp/system:system", | 652 "//mojo/public/cpp/system:system", |
| 653 "//mojo/public/interfaces/application", |
| 653 "//mojo/services/http_server/cpp", | 654 "//mojo/services/http_server/cpp", |
| 654 "//mojo/services/http_server/interfaces", | 655 "//mojo/services/http_server/interfaces", |
| 655 "//mojo/services/network/interfaces", | 656 "//mojo/services/network/interfaces", |
| 656 "//shell/test:bindings", | 657 "//shell/test:bindings", |
| 657 ":embed_pingable", | 658 ":embed_pingable", |
| 658 ] | 659 ] |
| 659 | 660 |
| 660 data_deps = [ | 661 data_deps = [ |
| 661 "//services/http_server:http_server($default_toolchain)", | 662 "//services/http_server:http_server($default_toolchain)", |
| 662 ] | 663 ] |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 "${root_out_dir}/libmojo_shell.so", | 705 "${root_out_dir}/libmojo_shell.so", |
| 705 ] | 706 ] |
| 706 } else { | 707 } else { |
| 707 sources += [ "${root_out_dir}/mojo_shell" ] | 708 sources += [ "${root_out_dir}/mojo_shell" ] |
| 708 } | 709 } |
| 709 | 710 |
| 710 outputs = [ | 711 outputs = [ |
| 711 "${root_out_dir}/symbols/{{source_file_part}}", | 712 "${root_out_dir}/symbols/{{source_file_part}}", |
| 712 ] | 713 ] |
| 713 } | 714 } |
| OLD | NEW |