| 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 = [ |
| 11 "application_instance.cc", | 11 "application_instance.cc", |
| 12 "application_instance.h", | 12 "application_instance.h", |
| 13 "application_loader.h", | 13 "application_loader.h", |
| 14 "application_manager.cc", | 14 "application_manager.cc", |
| 15 "application_manager.h", | 15 "application_manager.h", |
| 16 "capability_filter.cc", | 16 "capability_filter.cc", |
| 17 "capability_filter.h", | 17 "capability_filter.h", |
| 18 "connect_to_application_params.cc", | 18 "connect_to_application_params.cc", |
| 19 "connect_to_application_params.h", | 19 "connect_to_application_params.h", |
| 20 "connect_util.cc", | 20 "connect_util.cc", |
| 21 "connect_util.h", | 21 "connect_util.h", |
| 22 "data_pipe_peek.cc", | 22 "data_pipe_peek.cc", |
| 23 "data_pipe_peek.h", | 23 "data_pipe_peek.h", |
| 24 "fetcher.cc", | 24 "fetcher.cc", |
| 25 "fetcher.h", | 25 "fetcher.h", |
| 26 "identity.cc", | 26 "identity.cc", |
| 27 "identity.h", | 27 "identity.h", |
| 28 "in_thread_application_loader.cc", |
| 29 "in_thread_application_loader.h", |
| 28 "native_runner.h", | 30 "native_runner.h", |
| 29 "package_manager.h", | 31 "package_manager.h", |
| 30 "query_util.cc", | 32 "query_util.cc", |
| 31 "query_util.h", | 33 "query_util.h", |
| 32 "static_application_loader.cc", | 34 "static_application_loader.cc", |
| 33 "static_application_loader.h", | 35 "static_application_loader.h", |
| 34 "switches.cc", | 36 "switches.cc", |
| 35 "switches.h", | 37 "switches.h", |
| 36 ] | 38 ] |
| 37 | 39 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 "//url", | 93 "//url", |
| 92 ] | 94 ] |
| 93 } | 95 } |
| 94 | 96 |
| 95 mojom("test_bindings") { | 97 mojom("test_bindings") { |
| 96 sources = [ | 98 sources = [ |
| 97 "capability_filter_unittest.mojom", | 99 "capability_filter_unittest.mojom", |
| 98 "test.mojom", | 100 "test.mojom", |
| 99 ] | 101 ] |
| 100 } | 102 } |
| OLD | NEW |