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

Side by Side Diff: build/all.gyp

Issue 10534115: Add an untrusted NaCl build for IPC. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 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
« no previous file with comments | « no previous file | ipc/ipc.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 7 {
8 'target_name': 'All', 8 'target_name': 'All',
9 'type': 'none', 9 'type': 'none',
10 'xcode_create_dependents_test_runner': 1, 10 'xcode_create_dependents_test_runner': 1,
11 'dependencies': [ 11 'dependencies': [
12 'some.gyp:*', 12 'some.gyp:*',
13 '../base/base.gyp:*', 13 '../base/base.gyp:*',
14 '../base/base_untrusted.gyp:*',
15 '../chrome/chrome.gyp:*', 14 '../chrome/chrome.gyp:*',
16 '../content/content.gyp:*', 15 '../content/content.gyp:*',
17 '../crypto/crypto.gyp:*', 16 '../crypto/crypto.gyp:*',
18 '../ui/ui.gyp:*', 17 '../ui/ui.gyp:*',
19 '../gpu/gpu.gyp:*', 18 '../gpu/gpu.gyp:*',
20 '../gpu/tools/tools.gyp:*', 19 '../gpu/tools/tools.gyp:*',
21 '../ipc/ipc.gyp:*', 20 '../ipc/ipc.gyp:*',
21 '../ipc/ipc_untrusted.gyp:*',
22 '../jingle/jingle.gyp:*', 22 '../jingle/jingle.gyp:*',
23 '../media/media.gyp:*', 23 '../media/media.gyp:*',
24 '../net/net.gyp:*', 24 '../net/net.gyp:*',
25 '../ppapi/ppapi.gyp:*', 25 '../ppapi/ppapi.gyp:*',
26 '../ppapi/ppapi_internal.gyp:*', 26 '../ppapi/ppapi_internal.gyp:*',
27 '../ppapi/ppapi_proxy_untrusted.gyp:*', 27 '../ppapi/ppapi_proxy_untrusted.gyp:*',
28 '../printing/printing.gyp:*', 28 '../printing/printing.gyp:*',
29 '../sdch/sdch.gyp:*', 29 '../sdch/sdch.gyp:*',
30 '../skia/skia.gyp:*', 30 '../skia/skia.gyp:*',
31 '../sql/sql.gyp:*', 31 '../sql/sql.gyp:*',
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 '../chrome/chrome.gyp:browser_tests_run', 167 '../chrome/chrome.gyp:browser_tests_run',
168 '../chrome/chrome.gyp:unit_tests_run', 168 '../chrome/chrome.gyp:unit_tests_run',
169 '../net/net.gyp:net_unittests_run', 169 '../net/net.gyp:net_unittests_run',
170 ], 170 ],
171 }, # target_name: chromium_swarm_tests 171 }, # target_name: chromium_swarm_tests
172 { 172 {
173 'target_name': 'chromium_builder_tests', 173 'target_name': 'chromium_builder_tests',
174 'type': 'none', 174 'type': 'none',
175 'dependencies': [ 175 'dependencies': [
176 '../base/base.gyp:base_unittests', 176 '../base/base.gyp:base_unittests',
177 # TODO(bbudge): drop this when something meaningful depends on
178 # base_untrusted.
179 '../base/base_untrusted.gyp:base_untrusted',
180 '../chrome/chrome.gyp:browser_tests', 177 '../chrome/chrome.gyp:browser_tests',
181 '../chrome/chrome.gyp:interactive_ui_tests', 178 '../chrome/chrome.gyp:interactive_ui_tests',
182 '../chrome/chrome.gyp:safe_browsing_tests', 179 '../chrome/chrome.gyp:safe_browsing_tests',
183 '../chrome/chrome.gyp:sync_integration_tests', 180 '../chrome/chrome.gyp:sync_integration_tests',
184 '../chrome/chrome.gyp:unit_tests', 181 '../chrome/chrome.gyp:unit_tests',
185 '../cloud_print/cloud_print.gyp:cloud_print_unittests', 182 '../cloud_print/cloud_print.gyp:cloud_print_unittests',
186 '../content/content.gyp:content_browsertests', 183 '../content/content.gyp:content_browsertests',
187 '../content/content.gyp:content_unittests', 184 '../content/content.gyp:content_unittests',
188 '../crypto/crypto.gyp:crypto_unittests', 185 '../crypto/crypto.gyp:crypto_unittests',
189 '../ui/ui.gyp:gfx_unittests', 186 '../ui/ui.gyp:gfx_unittests',
190 '../gpu/gpu.gyp:gpu_unittests', 187 '../gpu/gpu.gyp:gpu_unittests',
191 '../gpu/gles2_conform_support/gles2_conform_support.gyp:gles2_conform_su pport', 188 '../gpu/gles2_conform_support/gles2_conform_support.gyp:gles2_conform_su pport',
192 '../ipc/ipc.gyp:ipc_tests', 189 '../ipc/ipc.gyp:ipc_tests',
190 # TODO(bbudge): drop this when something meaningful depends on
191 # ipc_untrusted.
192 '../ipc/ipc_untrusted.gyp:ipc_untrusted',
193 '../jingle/jingle.gyp:jingle_unittests', 193 '../jingle/jingle.gyp:jingle_unittests',
194 '../media/media.gyp:media_unittests', 194 '../media/media.gyp:media_unittests',
195 '../net/net.gyp:net_unittests', 195 '../net/net.gyp:net_unittests',
196 '../printing/printing.gyp:printing_unittests', 196 '../printing/printing.gyp:printing_unittests',
197 '../remoting/remoting.gyp:remoting_unittests', 197 '../remoting/remoting.gyp:remoting_unittests',
198 '../sql/sql.gyp:sql_unittests', 198 '../sql/sql.gyp:sql_unittests',
199 '../sync/sync.gyp:sync_unit_tests', 199 '../sync/sync.gyp:sync_unit_tests',
200 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_unittests', 200 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_unittests',
201 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber_unittes ts', 201 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber_unittes ts',
202 'temp_gyp/googleurl.gyp:googleurl_unittests', 202 'temp_gyp/googleurl.gyp:googleurl_unittests',
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 'dependencies': [ 613 'dependencies': [
614 '../chromeos/chromeos.gyp:chromeos_unittests', 614 '../chromeos/chromeos.gyp:chromeos_unittests',
615 ], 615 ],
616 }], 616 }],
617 ], 617 ],
618 }, 618 },
619 ], # targets 619 ], # targets
620 }], # "use_aura==1" 620 }], # "use_aura==1"
621 ], # conditions 621 ], # conditions
622 } 622 }
OLDNEW
« no previous file with comments | « no previous file | ipc/ipc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698