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

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
« no previous file with comments | « base/rand_util_nacl.cc ('k') | ipc/ipc_channel.cc » ('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:*',
14 '../chrome/chrome.gyp:*', 15 '../chrome/chrome.gyp:*',
15 '../content/content.gyp:*', 16 '../content/content.gyp:*',
16 '../crypto/crypto.gyp:*', 17 '../crypto/crypto.gyp:*',
17 '../ui/ui.gyp:*', 18 '../ui/ui.gyp:*',
18 '../gpu/gpu.gyp:*', 19 '../gpu/gpu.gyp:*',
19 '../gpu/tools/tools.gyp:*', 20 '../gpu/tools/tools.gyp:*',
20 '../ipc/ipc.gyp:*', 21 '../ipc/ipc.gyp:*',
21 '../ipc/ipc_untrusted.gyp:*', 22 '../ipc/ipc_untrusted.gyp:*',
22 '../jingle/jingle.gyp:*', 23 '../jingle/jingle.gyp:*',
23 '../media/media.gyp:*', 24 '../media/media.gyp:*',
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 '../chrome/chrome.gyp:sync_integration_tests', 181 '../chrome/chrome.gyp:sync_integration_tests',
181 '../chrome/chrome.gyp:unit_tests', 182 '../chrome/chrome.gyp:unit_tests',
182 '../cloud_print/cloud_print.gyp:cloud_print_unittests', 183 '../cloud_print/cloud_print.gyp:cloud_print_unittests',
183 '../content/content.gyp:content_browsertests', 184 '../content/content.gyp:content_browsertests',
184 '../content/content.gyp:content_unittests', 185 '../content/content.gyp:content_unittests',
185 '../crypto/crypto.gyp:crypto_unittests', 186 '../crypto/crypto.gyp:crypto_unittests',
186 '../ui/ui.gyp:gfx_unittests', 187 '../ui/ui.gyp:gfx_unittests',
187 '../gpu/gpu.gyp:gpu_unittests', 188 '../gpu/gpu.gyp:gpu_unittests',
188 '../gpu/gles2_conform_support/gles2_conform_support.gyp:gles2_conform_su pport', 189 '../gpu/gles2_conform_support/gles2_conform_support.gyp:gles2_conform_su pport',
189 '../ipc/ipc.gyp:ipc_tests', 190 '../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', 191 '../jingle/jingle.gyp:jingle_unittests',
194 '../media/media.gyp:media_unittests', 192 '../media/media.gyp:media_unittests',
195 '../net/net.gyp:net_unittests', 193 '../net/net.gyp:net_unittests',
194 # TODO(bbudge): drop this when we have switched the NaCl proxy to IPC.
195 '../ppapi/ppapi_proxy_untrusted.gyp:ppapi_proxy_untrusted',
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',
203 ], 203 ],
204 'conditions': [ 204 'conditions': [
205 ['OS=="win"', { 205 ['OS=="win"', {
(...skipping 407 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 | « base/rand_util_nacl.cc ('k') | ipc/ipc_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698