OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'target_defaults': { | 9 'target_defaults': { |
10 'defines': ['MOJO_IMPLEMENTATION'], | 10 'defines': ['MOJO_IMPLEMENTATION'], |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 'system/waiter_test_utils.cc', | 128 'system/waiter_test_utils.cc', |
129 'system/waiter_test_utils.h', | 129 'system/waiter_test_utils.h', |
130 'system/waiter_unittest.cc', | 130 'system/waiter_unittest.cc', |
131 ], | 131 ], |
132 }, | 132 }, |
133 { | 133 { |
134 'target_name': 'mojo_shell', | 134 'target_name': 'mojo_shell', |
135 'type': 'executable', | 135 'type': 'executable', |
136 'dependencies': [ | 136 'dependencies': [ |
137 '../base/base.gyp:base', | 137 '../base/base.gyp:base', |
| 138 '../net/net.gyp:net', |
138 'mojo_system', | 139 'mojo_system', |
139 ], | 140 ], |
140 'sources': [ | 141 'sources': [ |
| 142 'loader/job.cc', |
| 143 'loader/job.h', |
| 144 'loader/loader.cc', |
| 145 'loader/loader.h', |
| 146 'loader/url_request_context_getter.cc', |
| 147 'loader/url_request_context_getter.h', |
141 'shell/app_container.cc', | 148 'shell/app_container.cc', |
142 'shell/app_container.h', | 149 'shell/app_container.h', |
143 'shell/shell.cc', | 150 'shell/shell.cc', |
| 151 'shell/storage.cc', |
| 152 'shell/storage.h', |
144 'shell/switches.cc', | 153 'shell/switches.cc', |
145 'shell/switches.h', | 154 'shell/switches.h', |
| 155 'shell/task_runners.cc', |
| 156 'shell/task_runners.h', |
146 ], | 157 ], |
147 'conditions': [ | 158 'conditions': [ |
148 ['OS == "win"', { | 159 ['OS == "win"', { |
149 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 160 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
150 'msvs_disabled_warnings': [ | 161 'msvs_disabled_warnings': [ |
151 4267, | 162 4267, |
152 ], | 163 ], |
153 }], | 164 }], |
154 ], | 165 ], |
155 }, | 166 }, |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 'sources': [ | 206 'sources': [ |
196 'public/bindings/sample/generated/sample_service.h', | 207 'public/bindings/sample/generated/sample_service.h', |
197 'public/bindings/sample/generated/sample_service_proxy.cc', | 208 'public/bindings/sample/generated/sample_service_proxy.cc', |
198 'public/bindings/sample/generated/sample_service_serialization.h', | 209 'public/bindings/sample/generated/sample_service_serialization.h', |
199 'public/bindings/sample/generated/sample_service_stub.cc', | 210 'public/bindings/sample/generated/sample_service_stub.cc', |
200 'public/bindings/sample/sample_test.cc', | 211 'public/bindings/sample/sample_test.cc', |
201 ], | 212 ], |
202 }, | 213 }, |
203 ], | 214 ], |
204 } | 215 } |
OLD | NEW |