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/catalog/builder.cc', | 10 'services/catalog/builder.cc', |
(...skipping 22 matching lines...) Expand all Loading... | |
33 ], | 33 ], |
34 'dependencies': [ | 34 'dependencies': [ |
35 '<(DEPTH)/base/base.gyp:base', | 35 '<(DEPTH)/base/base.gyp:base', |
36 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', | 36 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', |
37 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', | 37 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', |
38 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', | 38 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', |
39 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', | 39 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', |
40 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', | 40 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', |
41 '<(DEPTH)/net/net.gyp:net', | 41 '<(DEPTH)/net/net.gyp:net', |
42 '<(DEPTH)/url/url.gyp:url_lib', | 42 '<(DEPTH)/url/url.gyp:url_lib', |
43 '<(DEPTH)/net/net.gyp:net', | |
Ben Goodger (Google)
2016/03/11 23:21:38
who and the what now?
| |
43 ], | 44 ], |
44 }, { | 45 }, { |
45 'target_name': 'mojo_shell_unittests', | 46 'target_name': 'mojo_shell_unittests', |
46 'type': 'executable', | 47 'type': 'executable', |
47 'sources': [ | 48 'sources': [ |
48 'shell/tests/loader_unittest.cc', | 49 'shell/tests/loader_unittest.cc', |
49 ], | 50 ], |
50 'dependencies': [ | 51 'dependencies': [ |
51 'mojo_shell_lib', | 52 'mojo_shell_lib', |
52 'mojo_shell_test_bindings', | 53 'mojo_shell_test_bindings', |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
114 'shell/runner/host/native_application_support.h', | 115 'shell/runner/host/native_application_support.h', |
115 'shell/runner/init.cc', | 116 'shell/runner/init.cc', |
116 'shell/runner/init.h', | 117 'shell/runner/init.h', |
117 ], | 118 ], |
118 'dependencies': [ | 119 'dependencies': [ |
119 'mojo_runner_common_lib', | 120 'mojo_runner_common_lib', |
120 'mojo_shell_lib', | 121 'mojo_shell_lib', |
121 '<(DEPTH)/base/base.gyp:base', | 122 '<(DEPTH)/base/base.gyp:base', |
122 '<(DEPTH)/base/base.gyp:base_i18n', | 123 '<(DEPTH)/base/base.gyp:base_i18n', |
123 '<(DEPTH)/base/base.gyp:base_static', | 124 '<(DEPTH)/base/base.gyp:base_static', |
125 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', | |
124 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl', | 126 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl', |
125 '<(DEPTH)/mojo/mojo_platform_handle.gyp:platform_handle', | 127 '<(DEPTH)/mojo/mojo_platform_handle.gyp:platform_handle', |
126 '<(DEPTH)/mojo/mojo_public.gyp:mojo_message_pump_lib', | 128 '<(DEPTH)/mojo/mojo_public.gyp:mojo_message_pump_lib', |
127 ], | 129 ], |
128 'conditions': [ | 130 'conditions': [ |
129 ['OS=="linux"', { | 131 ['OS=="linux"', { |
130 'sources': [ | 132 'sources': [ |
131 'shell/runner/host/linux_sandbox.cc', | 133 'shell/runner/host/linux_sandbox.cc', |
132 'shell/runner/host/linux_sandbox.h', | 134 'shell/runner/host/linux_sandbox.h', |
133 ], | 135 ], |
134 'dependencies': [ | 136 'dependencies': [ |
135 '<(DEPTH)/sandbox/sandbox.gyp:sandbox', | 137 '<(DEPTH)/sandbox/sandbox.gyp:sandbox', |
136 '<(DEPTH)/sandbox/sandbox.gyp:sandbox_services', | 138 '<(DEPTH)/sandbox/sandbox.gyp:sandbox_services', |
137 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf', | 139 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf', |
138 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf_helpers', | 140 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf_helpers', |
139 ], | 141 ], |
140 }], | 142 }], |
141 ], | 143 ], |
142 }], | 144 }], |
143 } | 145 } |
OLD | NEW |