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 '../skia/skia.gyp:skia', |
13 '../third_party/icu/icu.gyp:icuuc', | 14 '../third_party/icu/icu.gyp:icuuc', |
14 ], | 15 ], |
15 'include_dirs': [ | 16 'include_dirs': [ |
16 '..', | 17 '..', |
17 ], | 18 ], |
18 'sources': [ | 19 'sources': [ |
19 'shared_impl/audio_impl.cc', | 20 'shared_impl/audio_impl.cc', |
20 'shared_impl/audio_impl.h', | 21 'shared_impl/audio_impl.h', |
21 'shared_impl/char_set_impl.cc', | 22 'shared_impl/char_set_impl.cc', |
22 'shared_impl/char_set_impl.h', | 23 'shared_impl/char_set_impl.h', |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 ['OS=="win"', { | 152 ['OS=="win"', { |
152 }], | 153 }], |
153 ['OS=="linux"', { | 154 ['OS=="linux"', { |
154 }], | 155 }], |
155 ['OS=="mac"', { | 156 ['OS=="mac"', { |
156 }] | 157 }] |
157 ], | 158 ], |
158 }, | 159 }, |
159 ], | 160 ], |
160 } | 161 } |
OLD | NEW |