| 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/loader.cc', |
| 143 'loader/loader.h', |
| 144 'loader/url_request_context_getter.cc', |
| 145 'loader/url_request_context_getter.h', |
| 141 'shell/app_container.cc', | 146 'shell/app_container.cc', |
| 142 'shell/app_container.h', | 147 'shell/app_container.h', |
| 143 'shell/shell.cc', | 148 'shell/shell.cc', |
| 144 'shell/switches.cc', | 149 'shell/switches.cc', |
| 145 'shell/switches.h', | 150 'shell/switches.h', |
| 146 ], | 151 ], |
| 147 'conditions': [ | 152 'conditions': [ |
| 148 ['OS == "win"', { | 153 ['OS == "win"', { |
| 149 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 154 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 150 'msvs_disabled_warnings': [ | 155 'msvs_disabled_warnings': [ |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 'sources': [ | 200 'sources': [ |
| 196 'public/bindings/sample/generated/sample_service.h', | 201 'public/bindings/sample/generated/sample_service.h', |
| 197 'public/bindings/sample/generated/sample_service_proxy.cc', | 202 'public/bindings/sample/generated/sample_service_proxy.cc', |
| 198 'public/bindings/sample/generated/sample_service_serialization.h', | 203 'public/bindings/sample/generated/sample_service_serialization.h', |
| 199 'public/bindings/sample/generated/sample_service_stub.cc', | 204 'public/bindings/sample/generated/sample_service_stub.cc', |
| 200 'public/bindings/sample/sample_test.cc', | 205 'public/bindings/sample/sample_test.cc', |
| 201 ], | 206 ], |
| 202 }, | 207 }, |
| 203 ], | 208 ], |
| 204 } | 209 } |
| OLD | NEW |