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': 'shell_interfaces', | 7 'target_name': 'shell_interfaces', |
8 'type': 'none', | 8 'type': 'none', |
9 'variables': { | 9 'variables': { |
10 'mojom_files': [ | 10 'mojom_files': [ |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 '../catalog/constants.h', | 72 '../catalog/constants.h', |
73 '../catalog/entry.cc', | 73 '../catalog/entry.cc', |
74 '../catalog/entry.h', | 74 '../catalog/entry.h', |
75 '../catalog/reader.cc', | 75 '../catalog/reader.cc', |
76 '../catalog/reader.h', | 76 '../catalog/reader.h', |
77 '../catalog/resolver.cc', | 77 '../catalog/resolver.cc', |
78 '../catalog/resolver.h', | 78 '../catalog/resolver.h', |
79 '../catalog/store.cc', | 79 '../catalog/store.cc', |
80 '../catalog/store.h', | 80 '../catalog/store.h', |
81 '../catalog/types.h', | 81 '../catalog/types.h', |
| 82 'loader.h', |
82 'connect_params.cc', | 83 'connect_params.cc', |
83 'connect_params.h', | 84 'connect_params.h', |
84 'connect_util.cc', | 85 'connect_util.cc', |
85 'connect_util.h', | 86 'connect_util.h', |
86 'native_runner.h', | 87 'native_runner.h', |
87 'native_runner_delegate.h', | 88 'native_runner_delegate.h', |
88 'shell.cc', | 89 'shell.cc', |
89 'shell.h', | 90 'shell.h', |
90 'switches.cc', | 91 'switches.cc', |
91 'switches.cc', | 92 'switches.cc', |
92 '<(DEPTH)/mojo/util/filename_util.cc', | 93 '<(DEPTH)/mojo/util/filename_util.cc', |
93 '<(DEPTH)/mojo/util/filename_util.h', | 94 '<(DEPTH)/mojo/util/filename_util.h', |
94 ], | 95 ], |
95 'dependencies': [ | 96 'dependencies': [ |
96 'shell_public', | 97 'shell_public', |
97 '<(DEPTH)/base/base.gyp:base', | 98 '<(DEPTH)/base/base.gyp:base', |
98 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', | 99 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', |
99 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', | 100 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', |
100 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', | 101 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', |
101 '<(DEPTH)/net/net.gyp:net', | 102 '<(DEPTH)/net/net.gyp:net', |
102 '<(DEPTH)/url/url.gyp:url_lib', | 103 '<(DEPTH)/url/url.gyp:url_lib', |
103 ], | 104 ], |
104 'export_dependent_settings': [ | 105 'export_dependent_settings': [ |
105 'shell_public', | 106 'shell_public', |
106 ], | 107 ], |
107 }, { | 108 }, { |
108 'target_name': 'mojo_shell_unittests', | 109 'target_name': 'mojo_shell_unittests', |
109 'type': 'executable', | 110 'type': 'executable', |
110 'sources': [ | 111 'sources': [ |
111 'tests/placeholder_unittest.cc', | 112 'tests/loader_unittest.cc', |
112 ], | 113 ], |
113 'dependencies': [ | 114 'dependencies': [ |
114 'shell_lib', | 115 'shell_lib', |
115 'shell_public', | 116 'shell_public', |
116 'shell_test_public', | 117 'shell_test_public', |
117 '<(DEPTH)/base/base.gyp:base', | 118 '<(DEPTH)/base/base.gyp:base', |
118 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', | 119 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', |
119 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', | 120 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', |
120 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests', | 121 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests', |
121 '<(DEPTH)/mojo/mojo_public.gyp:mojo_cpp_bindings', | 122 '<(DEPTH)/mojo/mojo_public.gyp:mojo_cpp_bindings', |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 'shell_public', | 236 'shell_public', |
236 '<(DEPTH)/base/base.gyp:base', | 237 '<(DEPTH)/base/base.gyp:base', |
237 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests', | 238 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests', |
238 '<(DEPTH)/testing/gtest.gyp:gtest', | 239 '<(DEPTH)/testing/gtest.gyp:gtest', |
239 ], | 240 ], |
240 'sources': [ | 241 'sources': [ |
241 'public/cpp/tests/interface_registry_unittest.cc', | 242 'public/cpp/tests/interface_registry_unittest.cc', |
242 ], | 243 ], |
243 }], | 244 }], |
244 } | 245 } |
OLD | NEW |