OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 { | 5 { |
6 'targets': [{ | 6 'targets': [{ |
7 'target_name': 'mojo_shell_lib', | 7 'target_name': 'mojo_shell_lib', |
8 'type': 'static_library', | 8 'type': 'static_library', |
9 'sources': [ | 9 'sources': [ |
10 'services/package_manager/loader.cc', | 10 'services/package_manager/loader.cc', |
11 'services/package_manager/loader.h', | 11 'services/package_manager/loader.h', |
12 'services/package_manager/package_manager.cc', | 12 'services/package_manager/package_manager.cc', |
13 'services/package_manager/package_manager.h', | 13 'services/package_manager/package_manager.h', |
14 'shell/loader.h', | 14 'shell/loader.h', |
15 'shell/application_manager.cc', | |
16 'shell/application_manager.h', | |
17 'shell/connect_params.cc', | 15 'shell/connect_params.cc', |
18 'shell/connect_params.h', | 16 'shell/connect_params.h', |
19 'shell/connect_util.cc', | 17 'shell/connect_util.cc', |
20 'shell/connect_util.h', | 18 'shell/connect_util.h', |
21 'shell/identity.cc', | 19 'shell/identity.cc', |
22 'shell/identity.h', | 20 'shell/identity.h', |
23 'shell/native_runner.h', | 21 'shell/native_runner.h', |
24 'shell/native_runner_delegate.h', | 22 'shell/native_runner_delegate.h', |
| 23 'shell/shell.cc', |
| 24 'shell/shell.h', |
25 'shell/switches.cc', | 25 'shell/switches.cc', |
26 'shell/switches.cc', | 26 'shell/switches.cc', |
27 'util/filename_util.cc', | 27 'util/filename_util.cc', |
28 'util/filename_util.h', | 28 'util/filename_util.h', |
29 ], | 29 ], |
30 'dependencies': [ | 30 'dependencies': [ |
31 '<(DEPTH)/base/base.gyp:base', | 31 '<(DEPTH)/base/base.gyp:base', |
32 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', | 32 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', |
33 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', | 33 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', |
34 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', | 34 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 'dependencies': [ | 132 'dependencies': [ |
133 '<(DEPTH)/sandbox/sandbox.gyp:sandbox', | 133 '<(DEPTH)/sandbox/sandbox.gyp:sandbox', |
134 '<(DEPTH)/sandbox/sandbox.gyp:sandbox_services', | 134 '<(DEPTH)/sandbox/sandbox.gyp:sandbox_services', |
135 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf', | 135 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf', |
136 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf_helpers', | 136 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf_helpers', |
137 ], | 137 ], |
138 }], | 138 }], |
139 ], | 139 ], |
140 }], | 140 }], |
141 } | 141 } |
OLD | NEW |