| 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 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 648 | 648 |
| 649 sources = [ | 649 sources = [ |
| 650 "shell_apptest.cc", | 650 "shell_apptest.cc", |
| 651 ] | 651 ] |
| 652 | 652 |
| 653 deps = [ | 653 deps = [ |
| 654 ":embed_pingable", | 654 ":embed_pingable", |
| 655 "//base", | 655 "//base", |
| 656 "//mojo/application", | 656 "//mojo/application", |
| 657 "//mojo/application:test_support", | 657 "//mojo/application:test_support", |
| 658 "//mojo/converters/base", |
| 658 "//mojo/data_pipe_utils", | 659 "//mojo/data_pipe_utils", |
| 659 "//mojo/public/cpp/bindings:callback", | 660 "//mojo/public/cpp/bindings:callback", |
| 660 "//mojo/public/cpp/environment", | 661 "//mojo/public/cpp/environment", |
| 661 "//mojo/public/cpp/system:system", | 662 "//mojo/public/cpp/system:system", |
| 662 "//mojo/public/interfaces/application", | 663 "//mojo/public/interfaces/application", |
| 663 "//mojo/services/http_server/cpp", | 664 "//mojo/services/http_server/cpp", |
| 664 "//mojo/services/http_server/interfaces", | 665 "//mojo/services/http_server/interfaces", |
| 665 "//mojo/services/network/interfaces", | 666 "//mojo/services/network/interfaces", |
| 666 "//shell/test:bindings", | 667 "//shell/test:bindings", |
| 667 ] | 668 ] |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 "${root_out_dir}/libmojo_shell.so", | 714 "${root_out_dir}/libmojo_shell.so", |
| 714 ] | 715 ] |
| 715 } else { | 716 } else { |
| 716 sources += [ "${root_out_dir}/mojo_shell" ] | 717 sources += [ "${root_out_dir}/mojo_shell" ] |
| 717 } | 718 } |
| 718 | 719 |
| 719 outputs = [ | 720 outputs = [ |
| 720 "${root_out_dir}/symbols/{{source_file_part}}", | 721 "${root_out_dir}/symbols/{{source_file_part}}", |
| 721 ] | 722 ] |
| 722 } | 723 } |
| OLD | NEW |