| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 output_name = "mojo_shell_unittests" | 52 output_name = "mojo_shell_unittests" |
| 53 sources = [ | 53 sources = [ |
| 54 "application_manager_unittest.cc", | 54 "application_manager_unittest.cc", |
| 55 "query_util_unittest.cc", | 55 "query_util_unittest.cc", |
| 56 ] | 56 ] |
| 57 | 57 |
| 58 deps = [ | 58 deps = [ |
| 59 ":shell", | 59 ":shell", |
| 60 ":test_bindings", | 60 ":test_bindings", |
| 61 "//base", | 61 "//base", |
| 62 "//mojo/application", | |
| 63 "//mojo/application/public/cpp", | 62 "//mojo/application/public/cpp", |
| 64 "//mojo/common", | |
| 65 "//mojo/environment:chromium", | |
| 66 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | 63 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", |
| 67 "//third_party/mojo/src/mojo/public/cpp/bindings", | |
| 68 "//testing/gtest", | 64 "//testing/gtest", |
| 69 "//url", | 65 "//url", |
| 70 ] | 66 ] |
| 71 } | 67 } |
| 72 | 68 |
| 73 mojom("test_bindings") { | 69 mojom("test_bindings") { |
| 74 sources = [ | 70 sources = [ |
| 75 "test.mojom", | 71 "test.mojom", |
| 76 ] | 72 ] |
| 77 } | 73 } |
| OLD | NEW |