| 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 15 matching lines...) Expand all Loading... |
| 26 "query_util.h", | 26 "query_util.h", |
| 27 "shell_impl.cc", | 27 "shell_impl.cc", |
| 28 "shell_impl.h", | 28 "shell_impl.h", |
| 29 ] | 29 ] |
| 30 | 30 |
| 31 public_deps = [ | 31 public_deps = [ |
| 32 "//base", | 32 "//base", |
| 33 "//mojo/common", | 33 "//mojo/common", |
| 34 "//mojo/public/interfaces/application:application", | 34 "//mojo/public/interfaces/application:application", |
| 35 "//mojo/services/network/public/interfaces", | 35 "//mojo/services/network/public/interfaces", |
| 36 "//mojo/services/service_cache/public/interfaces", |
| 36 "//url", | 37 "//url", |
| 37 ] | 38 ] |
| 38 deps = [ | 39 deps = [ |
| 39 "//base/third_party/dynamic_annotations", | 40 "//base/third_party/dynamic_annotations", |
| 40 "//crypto:crypto", | 41 "//crypto:crypto", |
| 41 "//url", | 42 "//url", |
| 42 "//mojo/edk/system", | 43 "//mojo/edk/system", |
| 43 "//mojo/environment:chromium", | 44 "//mojo/environment:chromium", |
| 44 "//mojo/services/content_handler/public/interfaces", | 45 "//mojo/services/content_handler/public/interfaces", |
| 45 "//shell:native_application_support", | 46 "//shell:native_application_support", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 66 "//testing/gtest", | 67 "//testing/gtest", |
| 67 "//url", | 68 "//url", |
| 68 ] | 69 ] |
| 69 } | 70 } |
| 70 | 71 |
| 71 mojom("test_bindings") { | 72 mojom("test_bindings") { |
| 72 sources = [ | 73 sources = [ |
| 73 "test.mojom", | 74 "test.mojom", |
| 74 ] | 75 ] |
| 75 } | 76 } |
| OLD | NEW |