OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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', | 8 'target_name': 'ppapi_shared', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 17 matching lines...) Expand all Loading... |
28 'shared_impl/audio_impl.cc', | 28 'shared_impl/audio_impl.cc', |
29 'shared_impl/audio_impl.h', | 29 'shared_impl/audio_impl.h', |
30 'shared_impl/char_set_impl.cc', | 30 'shared_impl/char_set_impl.cc', |
31 'shared_impl/char_set_impl.h', | 31 'shared_impl/char_set_impl.h', |
32 'shared_impl/crypto_impl.cc', | 32 'shared_impl/crypto_impl.cc', |
33 'shared_impl/crypto_impl.h', | 33 'shared_impl/crypto_impl.h', |
34 'shared_impl/font_impl.cc', | 34 'shared_impl/font_impl.cc', |
35 'shared_impl/font_impl.h', | 35 'shared_impl/font_impl.h', |
36 'shared_impl/image_data_impl.cc', | 36 'shared_impl/image_data_impl.cc', |
37 'shared_impl/image_data_impl.h', | 37 'shared_impl/image_data_impl.h', |
| 38 'shared_impl/ppapi_preferences.cc', |
| 39 'shared_impl/ppapi_preferences.h', |
38 'shared_impl/tracker_base.cc', | 40 'shared_impl/tracker_base.cc', |
39 'shared_impl/tracker_base.h', | 41 'shared_impl/tracker_base.h', |
40 'shared_impl/url_util_impl.cc', | 42 'shared_impl/url_util_impl.cc', |
41 'shared_impl/url_util_impl.h', | 43 'shared_impl/url_util_impl.h', |
42 'shared_impl/webkit_forwarding.cc', | 44 'shared_impl/webkit_forwarding.cc', |
43 'shared_impl/webkit_forwarding.h', | 45 'shared_impl/webkit_forwarding.h', |
44 | 46 |
45 'thunk/enter.h', | 47 'thunk/enter.h', |
46 'thunk/ppb_audio_api.h', | 48 'thunk/ppb_audio_api.h', |
47 'thunk/ppb_audio_config_api.h', | 49 'thunk/ppb_audio_config_api.h', |
(...skipping 10 matching lines...) Expand all Loading... |
58 'thunk/thunk.h', | 60 'thunk/thunk.h', |
59 ], | 61 ], |
60 'conditions': [ | 62 'conditions': [ |
61 ['OS=="win"', { | 63 ['OS=="win"', { |
62 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', | 64 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', |
63 }], | 65 }], |
64 ], | 66 ], |
65 }, | 67 }, |
66 ], | 68 ], |
67 } | 69 } |
OLD | NEW |