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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 18063005: Do PPB_FileIO Query and Read in the plugin process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to David's latest. Created 7 years, 5 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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_tests', 8 'target_name': 'ppapi_tests',
9 'type': 'loadable_module', 9 'type': 'loadable_module',
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 'proxy/plugin_var_tracker_unittest.cc', 180 'proxy/plugin_var_tracker_unittest.cc',
181 'proxy/ppb_var_unittest.cc', 181 'proxy/ppb_var_unittest.cc',
182 'proxy/ppp_instance_private_proxy_unittest.cc', 182 'proxy/ppp_instance_private_proxy_unittest.cc',
183 'proxy/ppp_instance_proxy_unittest.cc', 183 'proxy/ppp_instance_proxy_unittest.cc',
184 'proxy/ppp_messaging_proxy_unittest.cc', 184 'proxy/ppp_messaging_proxy_unittest.cc',
185 'proxy/printing_resource_unittest.cc', 185 'proxy/printing_resource_unittest.cc',
186 'proxy/raw_var_data_unittest.cc', 186 'proxy/raw_var_data_unittest.cc',
187 'proxy/serialized_var_unittest.cc', 187 'proxy/serialized_var_unittest.cc',
188 'proxy/talk_resource_unittest.cc', 188 'proxy/talk_resource_unittest.cc',
189 'proxy/websocket_resource_unittest.cc', 189 'proxy/websocket_resource_unittest.cc',
190 'shared_impl/proxy_lock_unittest.cc',
190 'shared_impl/resource_tracker_unittest.cc', 191 'shared_impl/resource_tracker_unittest.cc',
191 'shared_impl/thread_aware_callback_unittest.cc', 192 'shared_impl/thread_aware_callback_unittest.cc',
192 'shared_impl/time_conversion_unittest.cc', 193 'shared_impl/time_conversion_unittest.cc',
193 'shared_impl/tracked_callback_unittest.cc', 194 'shared_impl/tracked_callback_unittest.cc',
194 'shared_impl/var_tracker_unittest.cc', 195 'shared_impl/var_tracker_unittest.cc',
195 'shared_impl/var_value_conversions_unittest.cc', 196 'shared_impl/var_value_conversions_unittest.cc',
196 ], 197 ],
197 'conditions': [ 198 'conditions': [
198 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { 199 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
199 'conditions': [ 200 'conditions': [
200 [ 'linux_use_tcmalloc == 1', { 201 [ 'linux_use_tcmalloc == 1', {
201 'dependencies': [ 202 'dependencies': [
202 '../base/allocator/allocator.gyp:allocator', 203 '../base/allocator/allocator.gyp:allocator',
203 ], 204 ],
204 }], 205 }],
205 ], 206 ],
206 }], 207 }],
207 ], 208 ],
208 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 209 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
209 'msvs_disabled_warnings': [ 4267, ], 210 'msvs_disabled_warnings': [ 4267, ],
210 }, 211 },
211 { 212 {
212 'target_name': 'ppapi_example_skeleton', 213 'target_name': 'ppapi_example_skeleton',
213 'suppress_wildcard': 1, 214 'suppress_wildcard': 1,
214 'type': 'none', 215 'type': 'none',
215 'direct_dependent_settings': { 216 'direct_dependent_settings': {
216 'product_name': '>(_target_name)', 217 'product_name': '>(_target_name)',
217 'conditions': [ 218 'conditions': [
218 ['os_posix==1 and OS!="mac"', { 219 ['os_posix==1 and OS!="mac"', {
219 'cflags': ['-fvisibility=hidden'], 220 'cflags': ['-fvisibility=hidden'],
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 'ppapi.gyp:ppapi_cpp', 519 'ppapi.gyp:ppapi_cpp',
519 ], 520 ],
520 'sources': [ 521 'sources': [
521 'examples/printing/printing.cc', 522 'examples/printing/printing.cc',
522 ], 523 ],
523 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 524 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
524 'msvs_disabled_warnings': [ 4267, ], 525 'msvs_disabled_warnings': [ 4267, ],
525 }, 526 },
526 ], 527 ],
527 } 528 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698