| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 ] | 86 ] |
| 87 | 87 |
| 88 deps = [ | 88 deps = [ |
| 89 ":shell", | 89 ":shell", |
| 90 ":test_bindings", | 90 ":test_bindings", |
| 91 ":test_support", | 91 ":test_support", |
| 92 "//base", | 92 "//base", |
| 93 "//mojo/application/public/cpp", | 93 "//mojo/application/public/cpp", |
| 94 "//mojo/fetcher", | 94 "//mojo/fetcher", |
| 95 "//mojo/package_manager", | 95 "//mojo/package_manager", |
| 96 "//mojo/public/cpp/system", |
| 96 "//mojo/util:filename_util", | 97 "//mojo/util:filename_util", |
| 97 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | 98 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", |
| 98 "//third_party/mojo/src/mojo/public/cpp/system", | |
| 99 "//testing/gtest", | 99 "//testing/gtest", |
| 100 "//url", | 100 "//url", |
| 101 ] | 101 ] |
| 102 } | 102 } |
| 103 | 103 |
| 104 mojom("test_bindings") { | 104 mojom("test_bindings") { |
| 105 sources = [ | 105 sources = [ |
| 106 "capability_filter_unittest.mojom", | 106 "capability_filter_unittest.mojom", |
| 107 "test.mojom", | 107 "test.mojom", |
| 108 ] | 108 ] |
| 109 } | 109 } |
| OLD | NEW |