| 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("//mojo/public/mojo_application_manifest.gni") | 5 import("//mojo/public/mojo_application_manifest.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 group("all") { | 9 group("all") { |
| 10 testonly = true | 10 testonly = true |
| 11 deps = [ | 11 deps = [ |
| 12 ":shell", | 12 ":shell", |
| 13 "//mojo/shell/background", | 13 "//mojo/shell/background", |
| 14 "//mojo/shell/runner", | 14 "//mojo/shell/runner", |
| 15 "//mojo/shell/standalone", | 15 "//mojo/shell/standalone", |
| 16 "//mojo/shell/tests", | 16 "//mojo/shell/tests", |
| 17 ] | 17 ] |
| 18 } | 18 } |
| 19 | 19 |
| 20 source_set("shell") { | 20 source_set("shell") { |
| 21 output_name = "mojo_shell" | 21 output_name = "mojo_shell" |
| 22 sources = [ | 22 sources = [ |
| 23 "application_manager.cc", | |
| 24 "application_manager.h", | |
| 25 "connect_params.cc", | 23 "connect_params.cc", |
| 26 "connect_params.h", | 24 "connect_params.h", |
| 27 "connect_util.cc", | 25 "connect_util.cc", |
| 28 "connect_util.h", | 26 "connect_util.h", |
| 29 "identity.cc", | 27 "identity.cc", |
| 30 "identity.h", | 28 "identity.h", |
| 31 "loader.h", | 29 "loader.h", |
| 32 "native_runner.h", | 30 "native_runner.h", |
| 33 "native_runner_delegate.h", | 31 "native_runner_delegate.h", |
| 32 "shell.cc", |
| 33 "shell.h", |
| 34 "switches.cc", | 34 "switches.cc", |
| 35 "switches.h", | 35 "switches.h", |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 deps = [ | 38 deps = [ |
| 39 ":manifest", | 39 ":manifest", |
| 40 "//base", | 40 "//base", |
| 41 "//base/third_party/dynamic_annotations", | 41 "//base/third_party/dynamic_annotations", |
| 42 "//mojo/common", | 42 "//mojo/common", |
| 43 "//mojo/public/cpp/bindings", | 43 "//mojo/public/cpp/bindings", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 54 ] | 54 ] |
| 55 | 55 |
| 56 # For mojo/shell/application_loader.h | 56 # For mojo/shell/application_loader.h |
| 57 allow_circular_includes_from = [ "//mojo/services/package_manager:lib" ] | 57 allow_circular_includes_from = [ "//mojo/services/package_manager:lib" ] |
| 58 } | 58 } |
| 59 | 59 |
| 60 mojo_application_manifest("manifest") { | 60 mojo_application_manifest("manifest") { |
| 61 application_name = "shell" | 61 application_name = "shell" |
| 62 source = "manifest.json" | 62 source = "manifest.json" |
| 63 } | 63 } |
| OLD | NEW |