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_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 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 13 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
14 '../build/temp_gyp/googleurl.gyp:googleurl', | 14 '../build/temp_gyp/googleurl.gyp:googleurl', |
15 '../skia/skia.gyp:skia', | 15 '../skia/skia.gyp:skia', |
16 '../third_party/icu/icu.gyp:icuuc', | 16 '../third_party/icu/icu.gyp:icuuc', |
| 17 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 18 '../ui/gfx/surface/surface.gyp:surface', |
17 ], | 19 ], |
18 'include_dirs': [ | 20 'include_dirs': [ |
19 '..', | 21 '..', |
20 ], | 22 ], |
21 'export_dependent_settings': [ | 23 'export_dependent_settings': [ |
22 '../base/base.gyp:base', | 24 '../base/base.gyp:base', |
23 ], | 25 ], |
24 'sources': [ | 26 'sources': [ |
25 'shared_impl/audio_impl.cc', | 27 'shared_impl/audio_impl.cc', |
26 'shared_impl/audio_impl.h', | 28 'shared_impl/audio_impl.h', |
27 'shared_impl/char_set_impl.cc', | 29 'shared_impl/char_set_impl.cc', |
28 'shared_impl/char_set_impl.h', | 30 'shared_impl/char_set_impl.h', |
29 'shared_impl/crypto_impl.cc', | 31 'shared_impl/crypto_impl.cc', |
30 'shared_impl/crypto_impl.h', | 32 'shared_impl/crypto_impl.h', |
| 33 'shared_impl/font_impl.cc', |
| 34 'shared_impl/font_impl.h', |
31 'shared_impl/image_data_impl.cc', | 35 'shared_impl/image_data_impl.cc', |
32 'shared_impl/image_data_impl.h', | 36 'shared_impl/image_data_impl.h', |
33 'shared_impl/tracker_base.cc', | 37 'shared_impl/tracker_base.cc', |
34 'shared_impl/tracker_base.h', | 38 'shared_impl/tracker_base.h', |
35 'shared_impl/url_util_impl.cc', | 39 'shared_impl/url_util_impl.cc', |
36 'shared_impl/url_util_impl.h', | 40 'shared_impl/url_util_impl.h', |
37 | 41 |
38 'thunk/enter.h', | 42 'thunk/enter.h', |
| 43 'thunk/ppb_font_api.h', |
| 44 'thunk/ppb_font_thunk.cc', |
39 'thunk/ppb_graphics_2d_api.h', | 45 'thunk/ppb_graphics_2d_api.h', |
40 'thunk/ppb_graphics_2d_thunk.cc', | 46 'thunk/ppb_graphics_2d_thunk.cc', |
41 'thunk/ppb_image_data_api.h', | 47 'thunk/ppb_image_data_api.h', |
42 'thunk/ppb_image_data_thunk.cc', | 48 'thunk/ppb_image_data_thunk.cc', |
43 'thunk/thunk.h', | 49 'thunk/thunk.h', |
44 ], | 50 ], |
45 'conditions': [ | 51 'conditions': [ |
46 ['OS=="win"', { | 52 ['OS=="win"', { |
47 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', | 53 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', |
48 }], | 54 }], |
49 ], | 55 ], |
50 }, | 56 }, |
51 { | 57 { |
52 'target_name': 'ppapi_proxy', | 58 'target_name': 'ppapi_proxy', |
53 'type': 'static_library', | 59 'type': 'static_library', |
54 'dependencies': [ | 60 'dependencies': [ |
55 '../ipc/ipc.gyp:ipc', | 61 '../ipc/ipc.gyp:ipc', |
56 '../gpu/gpu.gyp:gpu_ipc', | 62 '../gpu/gpu.gyp:gpu_ipc', |
| 63 '../skia/skia.gyp:skia', |
| 64 '../ui/gfx/surface/surface.gyp:surface', |
57 'ppapi_c', | 65 'ppapi_c', |
58 'ppapi_shared_impl', | 66 'ppapi_shared_impl', |
59 ], | 67 ], |
60 'all_dependent_settings': { | 68 'all_dependent_settings': { |
61 'include_dirs': [ | 69 'include_dirs': [ |
62 '..', | 70 '..', |
63 ], | 71 ], |
64 }, | 72 }, |
65 'include_dirs': [ | 73 'include_dirs': [ |
66 '..', | 74 '..', |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 ['OS=="win"', { | 196 ['OS=="win"', { |
189 }], | 197 }], |
190 ['OS=="linux"', { | 198 ['OS=="linux"', { |
191 }], | 199 }], |
192 ['OS=="mac"', { | 200 ['OS=="mac"', { |
193 }] | 201 }] |
194 ], | 202 ], |
195 }, | 203 }, |
196 ], | 204 ], |
197 } | 205 } |
OLD | NEW |