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 }, | 24 }, |
25 'dependencies': [ | 25 'dependencies': [ |
26 '../native_client/tools.gyp:prep_toolchain', | 26 '../native_client/tools.gyp:prep_toolchain', |
27 '../base/base_untrusted.gyp:base_untrusted', | 27 '../base/base_nacl.gyp:base_nacl', |
28 ], | 28 ], |
29 'defines': [ | 29 'defines': [ |
30 'MEDIA_IMPLEMENTATION', | 30 'MEDIA_IMPLEMENTATION', |
31 ], | 31 ], |
32 'include_dirs': [ | 32 'include_dirs': [ |
33 '..', | 33 '..', |
34 ], | 34 ], |
35 'includes': [ | 35 'includes': [ |
36 'shared_memory_support.gypi', | 36 'shared_memory_support.gypi', |
37 ], | 37 ], |
(...skipping 26 matching lines...) Expand all Loading... |
64 'base/simd/yuv_to_rgb_table.cc', | 64 'base/simd/yuv_to_rgb_table.cc', |
65 'base/simd/yuv_to_rgb_table.h', | 65 'base/simd/yuv_to_rgb_table.h', |
66 'base/yuv_convert.cc', | 66 'base/yuv_convert.cc', |
67 'base/yuv_convert.h', | 67 'base/yuv_convert.h', |
68 ], | 68 ], |
69 }, # end of target 'media_yuv_nacl' | 69 }, # end of target 'media_yuv_nacl' |
70 ], | 70 ], |
71 }], | 71 }], |
72 ], | 72 ], |
73 } | 73 } |
OLD | NEW |