| 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 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 "app_child_process_host.cc", | 41 "app_child_process_host.cc", |
| 42 "app_child_process_host.h", | 42 "app_child_process_host.h", |
| 43 "child_process.cc", | 43 "child_process.cc", |
| 44 "child_process.h", | 44 "child_process.h", |
| 45 "child_process_host.cc", | 45 "child_process_host.cc", |
| 46 "child_process_host.h", | 46 "child_process_host.h", |
| 47 "context.cc", | 47 "context.cc", |
| 48 "context.h", | 48 "context.h", |
| 49 "dynamic_application_loader.cc", | 49 "dynamic_application_loader.cc", |
| 50 "dynamic_application_loader.h", | 50 "dynamic_application_loader.h", |
| 51 "dynamic_service_runner.cc", |
| 51 "dynamic_service_runner.h", | 52 "dynamic_service_runner.h", |
| 52 "external_application_listener.h", | 53 "external_application_listener.h", |
| 53 "external_application_listener_posix.cc", | 54 "external_application_listener_posix.cc", |
| 54 "external_application_listener_win.cc", | 55 "external_application_listener_win.cc", |
| 55 "filename_util.cc", | 56 "filename_util.cc", |
| 56 "filename_util.h", | 57 "filename_util.h", |
| 57 "in_process_dynamic_service_runner.cc", | 58 "in_process_dynamic_service_runner.cc", |
| 58 "in_process_dynamic_service_runner.h", | 59 "in_process_dynamic_service_runner.h", |
| 59 "incoming_connection_listener_posix.cc", | 60 "incoming_connection_listener_posix.cc", |
| 60 "incoming_connection_listener_posix.h", | 61 "incoming_connection_listener_posix.h", |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 "//base/test:test_support", | 265 "//base/test:test_support", |
| 265 "//testing/gtest", | 266 "//testing/gtest", |
| 266 "//url", | 267 "//url", |
| 267 "//mojo/application_manager", | 268 "//mojo/application_manager", |
| 268 "//mojo/common", | 269 "//mojo/common", |
| 269 "//mojo/edk/system", | 270 "//mojo/edk/system", |
| 270 "//mojo/environment:chromium", | 271 "//mojo/environment:chromium", |
| 271 "//mojo/shell/domain_socket:tests", | 272 "//mojo/shell/domain_socket:tests", |
| 272 ] | 273 ] |
| 273 } | 274 } |
| OLD | NEW |