| 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 16 matching lines...) Expand all Loading... |
| 27 "query_util.h", | 27 "query_util.h", |
| 28 "shell_impl.cc", | 28 "shell_impl.cc", |
| 29 "shell_impl.h", | 29 "shell_impl.h", |
| 30 ] | 30 ] |
| 31 | 31 |
| 32 public_deps = [ | 32 public_deps = [ |
| 33 "//base", | 33 "//base", |
| 34 "//mojo/converters/url", | 34 "//mojo/converters/url", |
| 35 "//mojo/data_pipe_utils", | 35 "//mojo/data_pipe_utils", |
| 36 "//mojo/public/interfaces/application:application", | 36 "//mojo/public/interfaces/application:application", |
| 37 "//mojo/services/authenticating_url_loader_interceptor/public/interfaces", | 37 "//mojo/services/authenticating_url_loader_interceptor/interfaces", |
| 38 "//mojo/services/authentication/public/interfaces", | 38 "//mojo/services/authentication/interfaces", |
| 39 "//mojo/services/network/public/interfaces", | 39 "//mojo/services/network/public/interfaces", |
| 40 "//mojo/services/url_response_disk_cache/public/interfaces", | 40 "//mojo/services/url_response_disk_cache/public/interfaces", |
| 41 "//url", | 41 "//url", |
| 42 ] | 42 ] |
| 43 deps = [ | 43 deps = [ |
| 44 "//base/third_party/dynamic_annotations", | 44 "//base/third_party/dynamic_annotations", |
| 45 "//crypto:crypto", | 45 "//crypto:crypto", |
| 46 "//url", | 46 "//url", |
| 47 "//mojo/edk/system", | 47 "//mojo/edk/system", |
| 48 "//mojo/environment:chromium", | 48 "//mojo/environment:chromium", |
| 49 "//mojo/services/content_handler/public/interfaces", | 49 "//mojo/services/content_handler/interfaces", |
| 50 "//shell:native_application_support", | 50 "//shell:native_application_support", |
| 51 ] | 51 ] |
| 52 } | 52 } |
| 53 | 53 |
| 54 test("mojo_application_manager_unittests") { | 54 test("mojo_application_manager_unittests") { |
| 55 sources = [ | 55 sources = [ |
| 56 "application_manager_unittest.cc", | 56 "application_manager_unittest.cc", |
| 57 "query_util_unittest.cc", | 57 "query_util_unittest.cc", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 deps = [ | 60 deps = [ |
| 61 ":application_manager", | 61 ":application_manager", |
| 62 ":test_bindings", | 62 ":test_bindings", |
| 63 "//base", | 63 "//base", |
| 64 "//mojo/application", | 64 "//mojo/application", |
| 65 "//mojo/edk/test:run_all_unittests", | 65 "//mojo/edk/test:run_all_unittests", |
| 66 "//mojo/environment:chromium", | 66 "//mojo/environment:chromium", |
| 67 "//mojo/public/cpp/application", | 67 "//mojo/public/cpp/application", |
| 68 "//mojo/public/cpp/bindings", | 68 "//mojo/public/cpp/bindings", |
| 69 "//testing/gtest", | 69 "//testing/gtest", |
| 70 "//url", | 70 "//url", |
| 71 ] | 71 ] |
| 72 } | 72 } |
| 73 | 73 |
| 74 mojom("test_bindings") { | 74 mojom("test_bindings") { |
| 75 sources = [ | 75 sources = [ |
| 76 "test.mojom", | 76 "test.mojom", |
| 77 ] | 77 ] |
| 78 } | 78 } |
| OLD | NEW |