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