| 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 27 matching lines...) Expand all Loading... |
| 38 "//url", | 38 "//url", |
| 39 ] | 39 ] |
| 40 deps = [ | 40 deps = [ |
| 41 "//base/third_party/dynamic_annotations", | 41 "//base/third_party/dynamic_annotations", |
| 42 "//crypto:crypto", | 42 "//crypto:crypto", |
| 43 "//url", | 43 "//url", |
| 44 "//third_party/mojo/src/mojo/edk/system", | 44 "//third_party/mojo/src/mojo/edk/system", |
| 45 "//mojo/environment:chromium", | 45 "//mojo/environment:chromium", |
| 46 "//mojo/util:filename_util", | 46 "//mojo/util:filename_util", |
| 47 "//third_party/mojo_services/src/content_handler/public/interfaces", | 47 "//third_party/mojo_services/src/content_handler/public/interfaces", |
| 48 "//mojo/runner:native_application_support", | |
| 49 ] | 48 ] |
| 50 } | 49 } |
| 51 | 50 |
| 52 test("mojo_shell_unittests") { | 51 test("mojo_shell_unittests") { |
| 53 sources = [ | 52 sources = [ |
| 54 "application_manager_unittest.cc", | 53 "application_manager_unittest.cc", |
| 55 "query_util_unittest.cc", | 54 "query_util_unittest.cc", |
| 56 ] | 55 ] |
| 57 | 56 |
| 58 deps = [ | 57 deps = [ |
| 59 ":shell", | 58 ":shell", |
| 60 ":test_bindings", | 59 ":test_bindings", |
| 61 "//base", | 60 "//base", |
| 62 "//mojo/application", | 61 "//mojo/application", |
| 63 "//mojo/common", | 62 "//mojo/common", |
| 64 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | 63 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", |
| 65 "//mojo/environment:chromium", | 64 "//mojo/environment:chromium", |
| 66 "//third_party/mojo/src/mojo/public/cpp/application", | 65 "//third_party/mojo/src/mojo/public/cpp/application", |
| 67 "//third_party/mojo/src/mojo/public/cpp/bindings", | 66 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 68 "//testing/gtest", | 67 "//testing/gtest", |
| 69 "//url", | 68 "//url", |
| 70 ] | 69 ] |
| 71 } | 70 } |
| 72 | 71 |
| 73 mojom("test_bindings") { | 72 mojom("test_bindings") { |
| 74 sources = [ | 73 sources = [ |
| 75 "test.mojom", | 74 "test.mojom", |
| 76 ] | 75 ] |
| 77 } | 76 } |
| OLD | NEW |