| 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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 source_set("shell") { | 8 source_set("shell") { |
| 9 output_name = "mojo_shell" | 9 output_name = "mojo_shell" |
| 10 sources = [ | 10 sources = [ |
| 11 "application_instance.cc", | 11 "application_instance.cc", |
| 12 "application_instance.h", | 12 "application_instance.h", |
| 13 "application_loader.h", | 13 "application_loader.h", |
| 14 "application_manager.cc", | 14 "application_manager.cc", |
| 15 "application_manager.h", | 15 "application_manager.h", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 32 "static_application_loader.cc", | 32 "static_application_loader.cc", |
| 33 "static_application_loader.h", | 33 "static_application_loader.h", |
| 34 "switches.cc", | 34 "switches.cc", |
| 35 "switches.h", | 35 "switches.h", |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 public_deps = [ | 38 public_deps = [ |
| 39 "//base", | 39 "//base", |
| 40 "//mojo/application/public/interfaces", | 40 "//mojo/application/public/interfaces", |
| 41 "//mojo/common", | 41 "//mojo/common", |
| 42 "//third_party/mojo/src/mojo/public/cpp/bindings", | 42 "//mojo/public/cpp/bindings", |
| 43 "//mojo/services/network/public/interfaces", | 43 "//mojo/services/network/public/interfaces", |
| 44 "//mojo/services/updater", | 44 "//mojo/services/updater", |
| 45 "//url", | 45 "//url", |
| 46 ] | 46 ] |
| 47 deps = [ | 47 deps = [ |
| 48 "//base/third_party/dynamic_annotations", | 48 "//base/third_party/dynamic_annotations", |
| 49 "//crypto:crypto", | 49 "//crypto:crypto", |
| 50 "//mojo/application/public/cpp:sources", | 50 "//mojo/application/public/cpp:sources", |
| 51 "//url", | 51 "//url", |
| 52 "//third_party/mojo/src/mojo/edk/system", | 52 "//third_party/mojo/src/mojo/edk/system", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 "//url", | 91 "//url", |
| 92 ] | 92 ] |
| 93 } | 93 } |
| 94 | 94 |
| 95 mojom("test_bindings") { | 95 mojom("test_bindings") { |
| 96 sources = [ | 96 sources = [ |
| 97 "capability_filter_unittest.mojom", | 97 "capability_filter_unittest.mojom", |
| 98 "test.mojom", | 98 "test.mojom", |
| 99 ] | 99 ] |
| 100 } | 100 } |
| OLD | NEW |