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

Side by Side Diff: ppapi/ppapi_sources.gypi

Issue 8956008: WebSocket Pepper API: C++ utility class implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revise on comments at Patch Set 15 Created 8 years, 10 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 'variables': { 6 'variables': {
7 'c_source_files': [ 7 'c_source_files': [
8 'c/pp_bool.h', 8 'c/pp_bool.h',
9 'c/pp_completion_callback.h', 9 'c/pp_completion_callback.h',
10 'c/pp_errors.h', 10 'c/pp_errors.h',
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 265
266 # Utility sources. 266 # Utility sources.
267 'utility/completion_callback_factory.h', 267 'utility/completion_callback_factory.h',
268 'utility/non_thread_safe_ref_count.h', 268 'utility/non_thread_safe_ref_count.h',
269 'utility/graphics/paint_aggregator.cc', 269 'utility/graphics/paint_aggregator.cc',
270 'utility/graphics/paint_aggregator.h', 270 'utility/graphics/paint_aggregator.h',
271 'utility/graphics/paint_manager.cc', 271 'utility/graphics/paint_manager.cc',
272 'utility/graphics/paint_manager.h', 272 'utility/graphics/paint_manager.h',
273 'utility/threading/simple_thread.cc', 273 'utility/threading/simple_thread.cc',
274 'utility/threading/simple_thread.h', 274 'utility/threading/simple_thread.h',
275 'utility/websocket/websocket_api.cc',
276 'utility/websocket/websocket_api.h',
275 ], 277 ],
276 # 278 #
277 # Common Testing source for trusted and untrusted (NaCl) pugins. 279 # Common Testing source for trusted and untrusted (NaCl) pugins.
278 # 280 #
279 'test_common_source_files': [ 281 'test_common_source_files': [
280 # Common test files 282 # Common test files
281 'tests/all_c_includes.h', 283 'tests/all_c_includes.h',
282 'tests/all_cpp_includes.h', 284 'tests/all_cpp_includes.h',
283 'tests/arch_dependent_sizes_32.h', 285 'tests/arch_dependent_sizes_32.h',
284 'tests/arch_dependent_sizes_64.h', 286 'tests/arch_dependent_sizes_64.h',
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 'c/dev/ppb_transport_dev.h', 427 'c/dev/ppb_transport_dev.h',
426 ], 428 ],
427 'cpp_source_files': [ 429 'cpp_source_files': [
428 'cpp/dev/transport_dev.cc', 430 'cpp/dev/transport_dev.cc',
429 'cpp/dev/transport_dev.h', 431 'cpp/dev/transport_dev.h',
430 ], 432 ],
431 }, 433 },
432 }], 434 }],
433 ], 435 ],
434 } 436 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698