| 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("//third_party/mojo/src/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 = [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "//third_party/mojo/src/mojo/public/cpp/bindings", | 42 "//third_party/mojo/src/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", | |
| 53 "//mojo/environment:chromium", | 52 "//mojo/environment:chromium", |
| 54 "//mojo/util:filename_util", | 53 "//mojo/util:filename_util", |
| 54 "//third_party/mojo/src/mojo/edk/system", |
| 55 ] | 55 ] |
| 56 } | 56 } |
| 57 | 57 |
| 58 source_set("test_support") { | 58 source_set("test_support") { |
| 59 testonly = true | 59 testonly = true |
| 60 sources = [ | 60 sources = [ |
| 61 "capability_filter_test.cc", | 61 "capability_filter_test.cc", |
| 62 "capability_filter_test.h", | 62 "capability_filter_test.h", |
| 63 "test_package_manager.cc", | 63 "test_package_manager.cc", |
| 64 "test_package_manager.h", | 64 "test_package_manager.h", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 79 "capability_filter_unittest.cc", | 79 "capability_filter_unittest.cc", |
| 80 "query_util_unittest.cc", | 80 "query_util_unittest.cc", |
| 81 ] | 81 ] |
| 82 | 82 |
| 83 deps = [ | 83 deps = [ |
| 84 ":shell", | 84 ":shell", |
| 85 ":test_bindings", | 85 ":test_bindings", |
| 86 ":test_support", | 86 ":test_support", |
| 87 "//base", | 87 "//base", |
| 88 "//mojo/application/public/cpp", | 88 "//mojo/application/public/cpp", |
| 89 "//testing/gtest", |
| 89 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | 90 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", |
| 90 "//testing/gtest", | |
| 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 |