OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'ppapi_shared_impl', | 8 'target_name': 'ppapi_shared_impl', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
11 'ppapi_c', | 11 'ppapi_c', |
12 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
| 13 '../third_party/icu/icu.gyp:icuuc', |
13 ], | 14 ], |
14 'include_dirs': [ | 15 'include_dirs': [ |
15 '..', | 16 '..', |
16 ], | 17 ], |
17 'sources': [ | 18 'sources': [ |
18 'shared_impl/audio_impl.cc', | 19 'shared_impl/audio_impl.cc', |
19 'shared_impl/audio_impl.h', | 20 'shared_impl/audio_impl.h', |
| 21 'shared_impl/char_set_impl.cc', |
| 22 'shared_impl/char_set_impl.h', |
20 'shared_impl/image_data_impl.cc', | 23 'shared_impl/image_data_impl.cc', |
21 'shared_impl/image_data_impl.h', | 24 'shared_impl/image_data_impl.h', |
22 ], | 25 ], |
23 'conditions': [ | 26 'conditions': [ |
24 ['OS=="win"', { | 27 ['OS=="win"', { |
25 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', | 28 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', |
26 }], | 29 }], |
27 ], | 30 ], |
28 }, | 31 }, |
29 { | 32 { |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 ['OS=="win"', { | 152 ['OS=="win"', { |
150 }], | 153 }], |
151 ['OS=="linux"', { | 154 ['OS=="linux"', { |
152 }], | 155 }], |
153 ['OS=="mac"', { | 156 ['OS=="mac"', { |
154 }] | 157 }] |
155 ], | 158 ], |
156 }, | 159 }, |
157 ], | 160 ], |
158 } | 161 } |
OLD | NEW |