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

Side by Side Diff: build/all.gyp

Issue 24227003: [MIPS] Add support to gyp files to build Native Client inside of Chromium (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: Upload again. 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
« no previous file with comments | « no previous file | build/build_nexe.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 19 matching lines...) Expand all
30 '../src/untrusted/pthread/pthread.gyp:*', 30 '../src/untrusted/pthread/pthread.gyp:*',
31 '../tests.gyp:*', 31 '../tests.gyp:*',
32 '../tests/sel_main_chrome/sel_main_chrome.gyp:*', 32 '../tests/sel_main_chrome/sel_main_chrome.gyp:*',
33 'nacl_core_sdk.gyp:*', 33 'nacl_core_sdk.gyp:*',
34 ], 34 ],
35 'conditions': [ 35 'conditions': [
36 ['target_arch=="arm"', { 36 ['target_arch=="arm"', {
37 'dependencies': [ 37 'dependencies': [
38 '../src/trusted/validator_arm/validator_arm.gyp:*', 38 '../src/trusted/validator_arm/validator_arm.gyp:*',
39 ], 39 ],
40 }, { 40 }],
41 ['target_arch=="ia32" or target_arch=="x64"', {
41 'dependencies': [ 42 'dependencies': [
42 '../src/trusted/validator/driver/ncval.gyp:*', 43 '../src/trusted/validator/driver/ncval.gyp:*',
43 '../src/trusted/validator_arm/ncval.gyp:*', 44 '../src/trusted/validator_arm/ncval.gyp:*',
44 '../src/trusted/validator_x86/ncval.gyp:*', 45 '../src/trusted/validator_x86/ncval.gyp:*',
45 '../src/trusted/validator_x86/validator_x86.gyp:*', 46 '../src/trusted/validator_x86/validator_x86.gyp:*',
46 ], 47 ],
47 }], 48 }],
49 ['target_arch=="mipsel"', {
50 'dependencies': [
51 '../src/trusted/validator_mips/validator_mips.gyp:*',
52 ],
53 }],
48 ], 54 ],
49 }, 55 },
50 ], 56 ],
51 } 57 }
OLDNEW
« no previous file with comments | « no previous file | build/build_nexe.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698