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

Side by Side Diff: components/nacl.gyp

Issue 175533002: [MIPS] Use IRT shim instead of dummy IRT shim (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 years, 10 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'nacl/nacl_defines.gypi', 10 'nacl/nacl_defines.gypi',
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 '../native_client/src/trusted/service_runtime/service_runtime.gyp:se l_main_chrome', 83 '../native_client/src/trusted/service_runtime/service_runtime.gyp:se l_main_chrome',
84 ], 84 ],
85 'conditions': [ 85 'conditions': [
86 ['disable_nacl_untrusted==0', { 86 ['disable_nacl_untrusted==0', {
87 'dependencies': [ 87 'dependencies': [
88 '../ppapi/native_client/native_client.gyp:nacl_irt', 88 '../ppapi/native_client/native_client.gyp:nacl_irt',
89 '../ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_s him.gyp:pnacl_irt_shim', 89 '../ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_s him.gyp:pnacl_irt_shim',
90 '../ppapi/native_client/src/untrusted/pnacl_support_extension/pn acl_support_extension.gyp:pnacl_support_extension', 90 '../ppapi/native_client/src/untrusted/pnacl_support_extension/pn acl_support_extension.gyp:pnacl_support_extension',
91 ], 91 ],
92 }], 92 }],
93 ['target_arch=="mipsel"', {
94 'dependencies!': [
95 '../ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_s him.gyp:pnacl_irt_shim',
96 ],
97 }],
98 ], 93 ],
99 'direct_dependent_settings': { 94 'direct_dependent_settings': {
100 'defines': [ 95 'defines': [
101 '<@(nacl_defines)', 96 '<@(nacl_defines)',
102 ], 97 ],
103 }, 98 },
104 }, 99 },
105 { 100 {
106 'target_name': 'nacl_browser', 101 'target_name': 'nacl_browser',
107 'type': 'static_library', 102 'type': 'static_library',
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 'nacl/common/nacl_types.h', 391 'nacl/common/nacl_types.h',
397 'nacl/common/pnacl_types.cc', 392 'nacl/common/pnacl_types.cc',
398 'nacl/common/pnacl_types.h', 393 'nacl/common/pnacl_types.h',
399 ], 394 ],
400 'include_dirs': [ 395 'include_dirs': [
401 '..', 396 '..',
402 ], 397 ],
403 }, 398 },
404 ] 399 ]
405 } 400 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698