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

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') | ppapi/proxy/ppb_url_util_proxy.h » ('J')
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 '../third_party/icu/icu.gyp:icuuc', 13 '../third_party/icu/icu.gyp:icuuc',
14 ], 14 ],
15 'include_dirs': [ 15 'include_dirs': [
16 '..', 16 '..',
17 ], 17 ],
18 'sources': [ 18 'sources': [
19 'shared_impl/audio_impl.cc', 19 'shared_impl/audio_impl.cc',
20 'shared_impl/audio_impl.h', 20 'shared_impl/audio_impl.h',
21 'shared_impl/char_set_impl.cc', 21 'shared_impl/char_set_impl.cc',
22 'shared_impl/char_set_impl.h', 22 'shared_impl/char_set_impl.h',
23 'shared_impl/image_data_impl.cc', 23 'shared_impl/image_data_impl.cc',
24 'shared_impl/image_data_impl.h', 24 'shared_impl/image_data_impl.h',
25 'shared_impl/url_util_impl.cc',
26 'shared_impl/url_util_impl.h',
25 ], 27 ],
26 'conditions': [ 28 'conditions': [
27 ['OS=="win"', { 29 ['OS=="win"', {
28 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', 30 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B',
29 }], 31 }],
30 ], 32 ],
31 }, 33 },
32 { 34 {
33 'target_name': 'ppapi_proxy', 35 'target_name': 'ppapi_proxy',
34 'type': 'static_library', 36 'type': 'static_library',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 'proxy/ppb_surface_3d_proxy.cc', 126 'proxy/ppb_surface_3d_proxy.cc',
125 'proxy/ppb_surface_3d_proxy.h', 127 'proxy/ppb_surface_3d_proxy.h',
126 'proxy/ppb_testing_proxy.cc', 128 'proxy/ppb_testing_proxy.cc',
127 'proxy/ppb_testing_proxy.h', 129 'proxy/ppb_testing_proxy.h',
128 'proxy/ppb_url_loader_proxy.cc', 130 'proxy/ppb_url_loader_proxy.cc',
129 'proxy/ppb_url_loader_proxy.h', 131 'proxy/ppb_url_loader_proxy.h',
130 'proxy/ppb_url_request_info_proxy.cc', 132 'proxy/ppb_url_request_info_proxy.cc',
131 'proxy/ppb_url_request_info_proxy.h', 133 'proxy/ppb_url_request_info_proxy.h',
132 'proxy/ppb_url_response_info_proxy.cc', 134 'proxy/ppb_url_response_info_proxy.cc',
133 'proxy/ppb_url_response_info_proxy.h', 135 'proxy/ppb_url_response_info_proxy.h',
136 'proxy/ppb_url_util_proxy.cc',
137 'proxy/ppb_url_util_proxy.h',
134 'proxy/ppb_var_deprecated_proxy.cc', 138 'proxy/ppb_var_deprecated_proxy.cc',
135 'proxy/ppb_var_deprecated_proxy.h', 139 'proxy/ppb_var_deprecated_proxy.h',
136 'proxy/ppp_class_proxy.cc', 140 'proxy/ppp_class_proxy.cc',
137 'proxy/ppp_class_proxy.h', 141 'proxy/ppp_class_proxy.h',
138 'proxy/ppp_instance_proxy.cc', 142 'proxy/ppp_instance_proxy.cc',
139 'proxy/ppp_instance_proxy.h', 143 'proxy/ppp_instance_proxy.h',
140 'proxy/serialized_flash_menu.cc', 144 'proxy/serialized_flash_menu.cc',
141 'proxy/serialized_flash_menu.h', 145 'proxy/serialized_flash_menu.h',
142 'proxy/serialized_structs.cc', 146 'proxy/serialized_structs.cc',
143 'proxy/serialized_structs.h', 147 'proxy/serialized_structs.h',
144 'proxy/serialized_var.cc', 148 'proxy/serialized_var.cc',
145 'proxy/serialized_var.h', 149 'proxy/serialized_var.h',
146 'proxy/var_serialization_rules.h', 150 'proxy/var_serialization_rules.h',
147 ], 151 ],
148 'defines': [ 152 'defines': [
149 ], 153 ],
150 'conditions': [ 154 'conditions': [
151 ['OS=="win"', { 155 ['OS=="win"', {
152 }], 156 }],
153 ['OS=="linux"', { 157 ['OS=="linux"', {
154 }], 158 }],
155 ['OS=="mac"', { 159 ['OS=="mac"', {
156 }] 160 }]
157 ], 161 ],
158 }, 162 },
159 ], 163 ],
160 } 164 }
OLDNEW
« no previous file with comments | « no previous file | ppapi/proxy/dispatcher.cc » ('j') | ppapi/proxy/ppb_url_util_proxy.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698