Chromium Code Reviews| Index: src/shared/platform/platform.gyp |
| =================================================================== |
| --- src/shared/platform/platform.gyp (revision 8104) |
| +++ src/shared/platform/platform.gyp (working copy) |
| @@ -174,37 +174,33 @@ |
| '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', |
| ], |
| }, |
| - # ---------------------------------------------------------------------- |
| - ], |
| - 'conditions': [ |
| - # NOTE: we do not support untrusted gyp build on arm yet. |
| - ['target_arch!="arm"', { |
| - 'targets': [ |
| - { |
| - 'target_name': 'platform_lib', |
| - 'type': 'none', |
| - 'variables': { |
| - 'nlib_target': 'libplatform.a', |
| - 'build_glibc': 1, |
| - 'build_newlib': 1, |
| - 'sources': [ |
| - 'nacl_check.c', |
| - 'nacl_log.c', |
| - 'linux/condition_variable.c', |
| - 'linux/lock.c', |
| - 'linux/nacl_exit.c', |
| - 'linux/nacl_thread_id.c', |
| - 'linux/nacl_threads.c', |
| - 'linux/nacl_timestamp.c', |
| - 'nacl_sync_checked.c', |
| - 'refcount_base.cc', |
| + { |
| + 'target_name': 'platform_lib', |
| + 'type': 'none', |
| + 'variables': { |
| + 'nlib_target': 'libplatform.a', |
| + 'build_glibc': 1, |
| + 'build_newlib': 1, |
| + 'sources': [ |
| + 'nacl_check.c', |
| + 'nacl_log.c', |
| + 'linux/condition_variable.c', |
| + 'linux/lock.c', |
| + 'linux/nacl_exit.c', |
| + 'linux/nacl_thread_id.c', |
| + 'linux/nacl_threads.c', |
| + 'linux/nacl_timestamp.c', |
| + 'nacl_sync_checked.c', |
| + 'refcount_base.cc', |
| ] |
|
Mark Seaborn
2012/03/28 07:21:02
indent -2; same for other closing brackets below.
Nikolay
2012/03/28 13:24:23
Thanks, seems my beloved editor misused python-mod
|
| }, |
| - 'dependencies': [ |
| - '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| + 'dependencies': [ |
| + '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| ], |
| - }], |
| - }], |
| + }, |
| + # ---------------------------------------------------------------------- |
| + ], |
| + 'conditions': [ |
| ['OS=="win"', { |
| 'targets': [ |
| # --------------------------------------------------------------------- |
| @@ -239,4 +235,3 @@ |
| }], |
| ], |
| } |
| - |