| 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 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 "switches.cc", | 29 "switches.cc", |
| 30 "switches.h", | 30 "switches.h", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 public_deps = [ | 33 public_deps = [ |
| 34 "//base", | 34 "//base", |
| 35 "//mojo/common", | 35 "//mojo/common", |
| 36 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 36 "//third_party/mojo/src/mojo/public/interfaces/application:application", | 37 "//third_party/mojo/src/mojo/public/interfaces/application:application", |
| 37 "//mojo/services/network/public/interfaces", | 38 "//mojo/services/network/public/interfaces", |
| 38 "//url", | 39 "//url", |
| 39 ] | 40 ] |
| 40 deps = [ | 41 deps = [ |
| 41 "//base/third_party/dynamic_annotations", | 42 "//base/third_party/dynamic_annotations", |
| 42 "//crypto:crypto", | 43 "//crypto:crypto", |
| 43 "//url", | 44 "//url", |
| 44 "//third_party/mojo/src/mojo/edk/system", | 45 "//third_party/mojo/src/mojo/edk/system", |
| 45 "//mojo/environment:chromium", | 46 "//mojo/environment:chromium", |
| 46 "//mojo/util:filename_util", | 47 "//mojo/util:filename_util", |
| 47 "//third_party/mojo_services/src/content_handler/public/interfaces", | 48 "//third_party/mojo_services/src/content_handler/public/interfaces", |
| 48 "//mojo/runner:native_application_support", | |
| 49 ] | 49 ] |
| 50 } | 50 } |
| 51 | 51 |
| 52 test("tests") { | 52 test("tests") { |
| 53 output_name = "mojo_shell_unittests" | 53 output_name = "mojo_shell_unittests" |
| 54 sources = [ | 54 sources = [ |
| 55 "application_manager_unittest.cc", | 55 "application_manager_unittest.cc", |
| 56 "query_util_unittest.cc", | 56 "query_util_unittest.cc", |
| 57 ] | 57 ] |
| 58 | 58 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 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 |