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

Unified Diff: src/shared/gio/gio.gyp

Issue 9816003: GYP build for ARM untrusted runtime. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: src/shared/gio/gio.gyp
===================================================================
--- src/shared/gio/gio.gyp (revision 8056)
+++ src/shared/gio/gio.gyp (working copy)
@@ -26,26 +26,21 @@
'<@(trusted_sources)',
],
},
+ {
+ 'target_name': 'gio_lib',
+ 'type': 'none',
+ 'variables': {
+ 'nlib_target': 'libgio.a',
+ 'build_glibc': 1,
+ 'build_newlib': 1,
+ 'sources': ['<@(common_sources)']
+ },
+ 'dependencies': [
+ '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
+ ],
+ },
],
'conditions': [
- # NOTE: we do not support untrusted gyp build on arm yet.
- ['target_arch!="arm"', {
- 'targets' : [
- {
- 'target_name': 'gio_lib',
- 'type': 'none',
- 'variables': {
- 'nlib_target': 'libgio.a',
- 'build_glibc': 1,
- 'build_newlib': 1,
- 'sources': ['<@(common_sources)']
- },
- 'dependencies': [
- '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
- ],
- },
- ],
- }],
['OS=="win"', {
'targets': [
{

Powered by Google App Engine
This is Rietveld 408576698