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

Side by Side Diff: build/all.gyp

Issue 8817001: Make a gyp file for the pnacl_irt_shim. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Move one gyp file to chrome Created 9 years 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 | build/gyp_glob.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'includes': [ 2 'includes': [
3 'common.gypi', 3 'common.gypi',
4 ], 4 ],
5 'targets': [ 5 'targets': [
6 { 6 {
7 'target_name': 'pull_in_all', 7 'target_name': 'pull_in_all',
8 'type': 'none', 8 'type': 'none',
9 'dependencies': [ 9 'dependencies': [
10 '../src/shared/gio/gio.gyp:*', 10 '../src/shared/gio/gio.gyp:*',
(...skipping 26 matching lines...) Expand all
37 }], 37 }],
38 ['target_arch=="arm"', { 38 ['target_arch=="arm"', {
39 'dependencies': [ 39 'dependencies': [
40 '../src/trusted/validator_arm/validator_arm.gyp:*', 40 '../src/trusted/validator_arm/validator_arm.gyp:*',
41 ], 41 ],
42 }, { 42 }, {
43 'dependencies': [ 43 'dependencies': [
44 '../src/trusted/validator_x86/validator_x86.gyp:*', 44 '../src/trusted/validator_x86/validator_x86.gyp:*',
45 ], 45 ],
46 }], 46 }],
47 ['target_arch=="x64" or OS=="win"', {
48 # This library is only for x86-64 for now
49 # (the windows build always includes 64-bit).
50 # We may introduce a dummy shim to make it uniform.
51 'dependencies': [
52 # '../src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp:*',
53 '../../ppapi/pnacl_irt_shim.gyp:*',
54 ],
55 }],
47 ['OS=="win" and nacl_standalone==0', { 56 ['OS=="win" and nacl_standalone==0', {
48 'dependencies': [ 57 'dependencies': [
49 '../src/trusted/handle_pass/handle_pass.gyp:*', 58 '../src/trusted/handle_pass/handle_pass.gyp:*',
50 ], 59 ],
51 }], 60 }],
52 ], 61 ],
53 }, 62 },
54 ], 63 ],
55 } 64 }
OLDNEW
« no previous file with comments | « no previous file | build/gyp_glob.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698