| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//mojo/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 # We don't support building in the component build since mojo apps are | 9 # We don't support building in the component build since mojo apps are |
| 10 # inherently components. | 10 # inherently components. |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 "app_child_process.cc", | 40 "app_child_process.cc", |
| 41 "app_child_process.h", | 41 "app_child_process.h", |
| 42 "app_child_process_host.cc", | 42 "app_child_process_host.cc", |
| 43 "app_child_process_host.h", | 43 "app_child_process_host.h", |
| 44 "child_process.cc", | 44 "child_process.cc", |
| 45 "child_process.h", | 45 "child_process.h", |
| 46 "child_process_host.cc", | 46 "child_process_host.cc", |
| 47 "child_process_host.h", | 47 "child_process_host.h", |
| 48 "context.cc", | 48 "context.cc", |
| 49 "context.h", | 49 "context.h", |
| 50 "data_pipe_peek.cc", |
| 51 "data_pipe_peek.h", |
| 50 "dynamic_application_loader.cc", | 52 "dynamic_application_loader.cc", |
| 51 "dynamic_application_loader.h", | 53 "dynamic_application_loader.h", |
| 52 "dynamic_service_runner.cc", | 54 "dynamic_service_runner.cc", |
| 53 "dynamic_service_runner.h", | 55 "dynamic_service_runner.h", |
| 54 "external_application_listener.h", | 56 "external_application_listener.h", |
| 55 "external_application_listener_posix.cc", | 57 "external_application_listener_posix.cc", |
| 56 "external_application_listener_win.cc", | 58 "external_application_listener_win.cc", |
| 57 "filename_util.cc", | 59 "filename_util.cc", |
| 58 "filename_util.h", | 60 "filename_util.h", |
| 59 "in_process_dynamic_service_runner.cc", | 61 "in_process_dynamic_service_runner.cc", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 deps = [ | 196 deps = [ |
| 195 ":external_application_registrar_bindings", | 197 ":external_application_registrar_bindings", |
| 196 "//mojo/shell/domain_socket" | 198 "//mojo/shell/domain_socket" |
| 197 ] | 199 ] |
| 198 } | 200 } |
| 199 | 201 |
| 200 # GYP version: mojo/mojo.gyp:mojo_shell_tests | 202 # GYP version: mojo/mojo.gyp:mojo_shell_tests |
| 201 test("mojo_shell_tests") { | 203 test("mojo_shell_tests") { |
| 202 sources = [ | 204 sources = [ |
| 203 "child_process_host_unittest.cc", | 205 "child_process_host_unittest.cc", |
| 206 "data_pipe_peek_unittest.cc", |
| 204 "dynamic_application_loader_unittest.cc", | 207 "dynamic_application_loader_unittest.cc", |
| 205 "in_process_dynamic_service_runner_unittest.cc", | 208 "in_process_dynamic_service_runner_unittest.cc", |
| 206 "mojo_url_resolver_unittest.cc", | 209 "mojo_url_resolver_unittest.cc", |
| 207 "shell_test_base.cc", | 210 "shell_test_base.cc", |
| 208 "shell_test_base.h", | 211 "shell_test_base.h", |
| 209 "shell_test_base_unittest.cc", | 212 "shell_test_base_unittest.cc", |
| 210 "shell_test_main.cc", | 213 "shell_test_main.cc", |
| 211 ] | 214 ] |
| 212 | 215 |
| 213 deps = [ | 216 deps = [ |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 "//base/test:test_support", | 269 "//base/test:test_support", |
| 267 "//testing/gtest", | 270 "//testing/gtest", |
| 268 "//url", | 271 "//url", |
| 269 "//mojo/application_manager", | 272 "//mojo/application_manager", |
| 270 "//mojo/common", | 273 "//mojo/common", |
| 271 "//mojo/edk/system", | 274 "//mojo/edk/system", |
| 272 "//mojo/environment:chromium", | 275 "//mojo/environment:chromium", |
| 273 "//mojo/shell/domain_socket:tests", | 276 "//mojo/shell/domain_socket:tests", |
| 274 ] | 277 ] |
| 275 } | 278 } |
| OLD | NEW |