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

Side by Side Diff: build/all.gyp

Issue 10546140: Add untrusted NaCl build for PPAPI proxy. (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
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 '../chrome/chrome.gyp:*', 14 '../chrome/chrome.gyp:*',
15 '../content/content.gyp:*', 15 '../content/content.gyp:*',
16 '../crypto/crypto.gyp:*', 16 '../crypto/crypto.gyp:*',
17 '../ui/ui.gyp:*', 17 '../ui/ui.gyp:*',
18 '../gpu/gpu.gyp:*', 18 '../gpu/gpu.gyp:*',
19 '../gpu/tools/tools.gyp:*', 19 '../gpu/tools/tools.gyp:*',
20 '../ipc/ipc.gyp:*', 20 '../ipc/ipc.gyp:*',
21 '../ipc/ipc_untrusted.gyp:*',
bradnelson 2012/06/13 20:21:17 So actually you can leave this in (as it just bloa
bbudge 2012/06/14 02:45:10 Done.
22 '../jingle/jingle.gyp:*', 21 '../jingle/jingle.gyp:*',
23 '../media/media.gyp:*', 22 '../media/media.gyp:*',
24 '../net/net.gyp:*', 23 '../net/net.gyp:*',
25 '../ppapi/ppapi.gyp:*', 24 '../ppapi/ppapi.gyp:*',
26 '../ppapi/ppapi_internal.gyp:*', 25 '../ppapi/ppapi_internal.gyp:*',
27 '../ppapi/ppapi_proxy_untrusted.gyp:*', 26 '../ppapi/ppapi_proxy_untrusted.gyp:*',
28 '../printing/printing.gyp:*', 27 '../printing/printing.gyp:*',
29 '../sdch/sdch.gyp:*', 28 '../sdch/sdch.gyp:*',
30 '../skia/skia.gyp:*', 29 '../skia/skia.gyp:*',
31 '../sql/sql.gyp:*', 30 '../sql/sql.gyp:*',
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 '../chrome/chrome.gyp:sync_integration_tests', 179 '../chrome/chrome.gyp:sync_integration_tests',
181 '../chrome/chrome.gyp:unit_tests', 180 '../chrome/chrome.gyp:unit_tests',
182 '../cloud_print/cloud_print.gyp:cloud_print_unittests', 181 '../cloud_print/cloud_print.gyp:cloud_print_unittests',
183 '../content/content.gyp:content_browsertests', 182 '../content/content.gyp:content_browsertests',
184 '../content/content.gyp:content_unittests', 183 '../content/content.gyp:content_unittests',
185 '../crypto/crypto.gyp:crypto_unittests', 184 '../crypto/crypto.gyp:crypto_unittests',
186 '../ui/ui.gyp:gfx_unittests', 185 '../ui/ui.gyp:gfx_unittests',
187 '../gpu/gpu.gyp:gpu_unittests', 186 '../gpu/gpu.gyp:gpu_unittests',
188 '../gpu/gles2_conform_support/gles2_conform_support.gyp:gles2_conform_su pport', 187 '../gpu/gles2_conform_support/gles2_conform_support.gyp:gles2_conform_su pport',
189 '../ipc/ipc.gyp:ipc_tests', 188 '../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', 189 '../jingle/jingle.gyp:jingle_unittests',
194 '../media/media.gyp:media_unittests', 190 '../media/media.gyp:media_unittests',
195 '../net/net.gyp:net_unittests', 191 '../net/net.gyp:net_unittests',
192 # TODO(bbudge): drop this when we have switched the NaCl proxy to IPC.
193 '../ppapi/ppapi_proxy_untrusted.gyp:ppapi_proxy_untrusted',
196 '../printing/printing.gyp:printing_unittests', 194 '../printing/printing.gyp:printing_unittests',
197 '../remoting/remoting.gyp:remoting_unittests', 195 '../remoting/remoting.gyp:remoting_unittests',
198 '../sql/sql.gyp:sql_unittests', 196 '../sql/sql.gyp:sql_unittests',
199 '../sync/sync.gyp:sync_unit_tests', 197 '../sync/sync.gyp:sync_unit_tests',
200 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_unittests', 198 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_unittests',
201 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber_unittes ts', 199 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber_unittes ts',
202 'temp_gyp/googleurl.gyp:googleurl_unittests', 200 'temp_gyp/googleurl.gyp:googleurl_unittests',
203 ], 201 ],
204 'conditions': [ 202 'conditions': [
205 ['OS=="win"', { 203 ['OS=="win"', {
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 'dependencies': [ 611 'dependencies': [
614 '../chromeos/chromeos.gyp:chromeos_unittests', 612 '../chromeos/chromeos.gyp:chromeos_unittests',
615 ], 613 ],
616 }], 614 }],
617 ], 615 ],
618 }, 616 },
619 ], # targets 617 ], # targets
620 }], # "use_aura==1" 618 }], # "use_aura==1"
621 ], # conditions 619 ], # conditions
622 } 620 }
OLDNEW
« no previous file with comments | « no previous file | ppapi/native_client/native_client.gyp » ('j') | ppapi/native_client/native_client.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698