| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 '../native_client/build/untrusted.gypi', | 10 '../native_client/build/untrusted.gypi', |
| 11 ], | 11 ], |
| 12 'conditions': [ | 12 'conditions': [ |
| 13 ['disable_nacl==0 and disable_nacl_untrusted==0', { | 13 ['disable_nacl==0 and disable_nacl_untrusted==0', { |
| 14 'targets': [ | 14 'targets': [ |
| 15 { | 15 { |
| 16 'target_name': 'shared_memory_support_nacl', | 16 'target_name': 'shared_memory_support_nacl', |
| 17 'type': 'none', | 17 'type': 'none', |
| 18 'variables': { | 18 'variables': { |
| 19 'nacl_untrusted_build': 1, | 19 'nacl_untrusted_build': 1, |
| 20 'nlib_target': 'libshared_memory_support_nacl.a', | 20 'nlib_target': 'libshared_memory_support_nacl.a', |
| 21 'build_glibc': 0, | 21 'build_glibc': 0, |
| 22 'build_newlib': 0, | 22 'build_newlib': 0, |
| 23 'build_irt': 1, | 23 'build_irt': 1, |
| 24 'build_pnacl_newlib': 0, |
| 25 'build_nonsfi_helper': 1, |
| 24 }, | 26 }, |
| 25 'dependencies': [ | 27 'dependencies': [ |
| 28 '../base/base_nacl.gyp:base_nacl', |
| 29 '../base/base_nacl.gyp:base_nacl_nonsfi', |
| 26 '../native_client/tools.gyp:prep_toolchain', | 30 '../native_client/tools.gyp:prep_toolchain', |
| 27 '../base/base_nacl.gyp:base_nacl', | |
| 28 ], | 31 ], |
| 29 'defines': [ | 32 'defines': [ |
| 30 'MEDIA_IMPLEMENTATION', | 33 'MEDIA_IMPLEMENTATION', |
| 31 ], | 34 ], |
| 32 'include_dirs': [ | 35 'include_dirs': [ |
| 33 '..', | 36 '..', |
| 34 ], | 37 ], |
| 35 'includes': [ | 38 'includes': [ |
| 36 'shared_memory_support.gypi', | 39 'shared_memory_support.gypi', |
| 37 ], | 40 ], |
| (...skipping 26 matching lines...) Expand all Loading... |
| 64 'base/simd/yuv_to_rgb_table.cc', | 67 'base/simd/yuv_to_rgb_table.cc', |
| 65 'base/simd/yuv_to_rgb_table.h', | 68 'base/simd/yuv_to_rgb_table.h', |
| 66 'base/yuv_convert.cc', | 69 'base/yuv_convert.cc', |
| 67 'base/yuv_convert.h', | 70 'base/yuv_convert.h', |
| 68 ], | 71 ], |
| 69 }, # end of target 'media_yuv_nacl' | 72 }, # end of target 'media_yuv_nacl' |
| 70 ], | 73 ], |
| 71 }], | 74 }], |
| 72 ], | 75 ], |
| 73 } | 76 } |
| OLD | NEW |