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

Side by Side Diff: ppapi/ppapi.gyp

Issue 5674004: Add compile assertions to enforce the sizes of all structs and enums in the C... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years 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) 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
6 { 5 {
7 'variables': { 6 'variables': {
8 'chromium_code': 1, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
9 }, 8 },
10 'target_defaults': { 9 'target_defaults': {
11 'conditions': [ 10 'conditions': [
12 # Linux shared libraries should always be built -fPIC. 11 # Linux shared libraries should always be built -fPIC.
13 # 12 #
14 # TODO(ajwong): For internal pepper plugins, which are statically linked 13 # TODO(ajwong): For internal pepper plugins, which are statically linked
15 # into chrome, do we want to build w/o -fPIC? If so, how can we express 14 # into chrome, do we want to build w/o -fPIC? If so, how can we express
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 'target_name': 'ppapi_tests', 415 'target_name': 'ppapi_tests',
417 'type': 'loadable_module', 416 'type': 'loadable_module',
418 'sources': [ 417 'sources': [
419 # Common test files. 418 # Common test files.
420 'tests/test_case.cc', 419 'tests/test_case.cc',
421 'tests/test_case.h', 420 'tests/test_case.h',
422 'tests/testing_instance.cc', 421 'tests/testing_instance.cc',
423 'tests/testing_instance.h', 422 'tests/testing_instance.h',
424 423
425 # Test cases. 424 # Test cases.
425 'tests/all_c_includes.h',
426 'tests/all_cpp_includes.h',
427 'tests/arch_dependent_sizes_32.h',
428 'tests/arch_dependent_sizes_64.h',
426 'tests/test_buffer.cc', 429 'tests/test_buffer.cc',
427 'tests/test_buffer.h', 430 'tests/test_buffer.h',
428 'tests/test_c_includes.c', 431 'tests/test_c_includes.c',
429 'tests/test_cc_includes.cc',
430 'tests/test_char_set.cc', 432 'tests/test_char_set.cc',
431 'tests/test_char_set.h', 433 'tests/test_char_set.h',
434 'tests/test_cpp_includes.cc',
432 'tests/test_directory_reader.cc', 435 'tests/test_directory_reader.cc',
433 'tests/test_directory_reader.h', 436 'tests/test_directory_reader.h',
434 'tests/test_file_io.cc', 437 'tests/test_file_io.cc',
435 'tests/test_file_io.h', 438 'tests/test_file_io.h',
436 'tests/test_file_ref.cc', 439 'tests/test_file_ref.cc',
437 'tests/test_file_ref.h', 440 'tests/test_file_ref.h',
438 'tests/test_graphics_2d.cc', 441 'tests/test_graphics_2d.cc',
439 'tests/test_graphics_2d.h', 442 'tests/test_graphics_2d.h',
440 'tests/test_image_data.cc', 443 'tests/test_image_data.cc',
441 'tests/test_image_data.h', 444 'tests/test_image_data.h',
442 'tests/test_paint_aggregator.cc', 445 'tests/test_paint_aggregator.cc',
443 'tests/test_paint_aggregator.h', 446 'tests/test_paint_aggregator.h',
444 'tests/test_scrollbar.cc', 447 'tests/test_scrollbar.cc',
445 'tests/test_scrollbar.h', 448 'tests/test_scrollbar.h',
449 'tests/test_struct_sizes.c',
446 'tests/test_transport.cc', 450 'tests/test_transport.cc',
447 'tests/test_transport.h', 451 'tests/test_transport.h',
448 'tests/test_url_loader.cc', 452 'tests/test_url_loader.cc',
449 'tests/test_url_loader.h', 453 'tests/test_url_loader.h',
450 'tests/test_url_util.cc', 454 'tests/test_url_util.cc',
451 'tests/test_url_util.h', 455 'tests/test_url_util.h',
452 'tests/test_utils.cc', 456 'tests/test_utils.cc',
453 'tests/test_utils.h', 457 'tests/test_utils.h',
454 'tests/test_var.cc', 458 'tests/test_var.cc',
455 'tests/test_var.h', 459 'tests/test_var.h',
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 ['OS=="win"', { 615 ['OS=="win"', {
612 }], 616 }],
613 ['OS=="linux"', { 617 ['OS=="linux"', {
614 }], 618 }],
615 ['OS=="mac"', { 619 ['OS=="mac"', {
616 }] 620 }]
617 ], 621 ],
618 }, 622 },
619 ], 623 ],
620 } 624 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698