Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Side by Side Diff: mojo/mojo.gyp

Issue 27943002: Teach mojo_shell how to load http URLs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix some style nits Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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',
149 'shell/storage.cc',
150 'shell/storage.h',
144 'shell/switches.cc', 151 'shell/switches.cc',
145 'shell/switches.h', 152 'shell/switches.h',
153 'shell/task_runners.cc',
154 'shell/task_runners.h',
146 ], 155 ],
147 'conditions': [ 156 'conditions': [
148 ['OS == "win"', { 157 ['OS == "win"', {
149 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 158 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
150 'msvs_disabled_warnings': [ 159 'msvs_disabled_warnings': [
151 4267, 160 4267,
152 ], 161 ],
153 }], 162 }],
154 ], 163 ],
155 }, 164 },
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 'sources': [ 204 'sources': [
196 'public/bindings/sample/generated/sample_service.h', 205 'public/bindings/sample/generated/sample_service.h',
197 'public/bindings/sample/generated/sample_service_proxy.cc', 206 'public/bindings/sample/generated/sample_service_proxy.cc',
198 'public/bindings/sample/generated/sample_service_serialization.h', 207 'public/bindings/sample/generated/sample_service_serialization.h',
199 'public/bindings/sample/generated/sample_service_stub.cc', 208 'public/bindings/sample/generated/sample_service_stub.cc',
200 'public/bindings/sample/sample_test.cc', 209 'public/bindings/sample/sample_test.cc',
201 ], 210 ],
202 }, 211 },
203 ], 212 ],
204 } 213 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698