Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: ppapi/ppapi_shared_proxy.gypi

Issue 6676045: Implement a proxy for URL util. Some of the implementation that doesn't need ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | ppapi/proxy/dispatcher.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 '../skia/skia.gyp:skia',
14 '../third_party/icu/icu.gyp:icuuc', 14 '../third_party/icu/icu.gyp:icuuc',
15 ], 15 ],
16 'include_dirs': [ 16 'include_dirs': [
17 '..', 17 '..',
18 ], 18 ],
19 'sources': [ 19 'sources': [
20 'shared_impl/audio_impl.cc', 20 'shared_impl/audio_impl.cc',
21 'shared_impl/audio_impl.h', 21 'shared_impl/audio_impl.h',
22 'shared_impl/char_set_impl.cc', 22 'shared_impl/char_set_impl.cc',
23 'shared_impl/char_set_impl.h', 23 'shared_impl/char_set_impl.h',
24 'shared_impl/image_data_impl.cc', 24 'shared_impl/image_data_impl.cc',
25 'shared_impl/image_data_impl.h', 25 'shared_impl/image_data_impl.h',
26 'shared_impl/url_util_impl.cc',
27 'shared_impl/url_util_impl.h',
26 ], 28 ],
27 'conditions': [ 29 'conditions': [
28 ['OS=="win"', { 30 ['OS=="win"', {
29 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', 31 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B',
30 }], 32 }],
31 ], 33 ],
32 }, 34 },
33 { 35 {
34 'target_name': 'ppapi_proxy', 36 'target_name': 'ppapi_proxy',
35 'type': 'static_library', 37 'type': 'static_library',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 'proxy/ppb_surface_3d_proxy.cc', 127 'proxy/ppb_surface_3d_proxy.cc',
126 'proxy/ppb_surface_3d_proxy.h', 128 'proxy/ppb_surface_3d_proxy.h',
127 'proxy/ppb_testing_proxy.cc', 129 'proxy/ppb_testing_proxy.cc',
128 'proxy/ppb_testing_proxy.h', 130 'proxy/ppb_testing_proxy.h',
129 'proxy/ppb_url_loader_proxy.cc', 131 'proxy/ppb_url_loader_proxy.cc',
130 'proxy/ppb_url_loader_proxy.h', 132 'proxy/ppb_url_loader_proxy.h',
131 'proxy/ppb_url_request_info_proxy.cc', 133 'proxy/ppb_url_request_info_proxy.cc',
132 'proxy/ppb_url_request_info_proxy.h', 134 'proxy/ppb_url_request_info_proxy.h',
133 'proxy/ppb_url_response_info_proxy.cc', 135 'proxy/ppb_url_response_info_proxy.cc',
134 'proxy/ppb_url_response_info_proxy.h', 136 'proxy/ppb_url_response_info_proxy.h',
137 'proxy/ppb_url_util_proxy.cc',
138 'proxy/ppb_url_util_proxy.h',
135 'proxy/ppb_var_deprecated_proxy.cc', 139 'proxy/ppb_var_deprecated_proxy.cc',
136 'proxy/ppb_var_deprecated_proxy.h', 140 'proxy/ppb_var_deprecated_proxy.h',
137 'proxy/ppp_class_proxy.cc', 141 'proxy/ppp_class_proxy.cc',
138 'proxy/ppp_class_proxy.h', 142 'proxy/ppp_class_proxy.h',
139 'proxy/ppp_instance_proxy.cc', 143 'proxy/ppp_instance_proxy.cc',
140 'proxy/ppp_instance_proxy.h', 144 'proxy/ppp_instance_proxy.h',
141 'proxy/serialized_flash_menu.cc', 145 'proxy/serialized_flash_menu.cc',
142 'proxy/serialized_flash_menu.h', 146 'proxy/serialized_flash_menu.h',
143 'proxy/serialized_structs.cc', 147 'proxy/serialized_structs.cc',
144 'proxy/serialized_structs.h', 148 'proxy/serialized_structs.h',
145 'proxy/serialized_var.cc', 149 'proxy/serialized_var.cc',
146 'proxy/serialized_var.h', 150 'proxy/serialized_var.h',
147 'proxy/var_serialization_rules.h', 151 'proxy/var_serialization_rules.h',
148 ], 152 ],
149 'defines': [ 153 'defines': [
150 ], 154 ],
151 'conditions': [ 155 'conditions': [
152 ['OS=="win"', { 156 ['OS=="win"', {
153 }], 157 }],
154 ['OS=="linux"', { 158 ['OS=="linux"', {
155 }], 159 }],
156 ['OS=="mac"', { 160 ['OS=="mac"', {
157 }] 161 }]
158 ], 162 ],
159 }, 163 },
160 ], 164 ],
161 } 165 }
OLDNEW
« no previous file with comments | « no previous file | ppapi/proxy/dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698