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

Side by Side Diff: runtime/bin/bin.gypi

Issue 15736026: - Attempt not to pass C++ flags to C builds. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 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 | no next file » | 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) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 # We place most generated source files in LIB_DIR (rather than, say 7 # We place most generated source files in LIB_DIR (rather than, say
8 # SHARED_INTERMEDIATE_DIR) because it is toolset specific. This avoids 8 # SHARED_INTERMEDIATE_DIR) because it is toolset specific. This avoids
9 # two problems. First, if a generated source file has architecture specific 9 # two problems. First, if a generated source file has architecture specific
10 # code, we'll get two different files in two different directories. Second, 10 # code, we'll get two different files in two different directories. Second,
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 'targets': [ 648 'targets': [
649 { 649 {
650 'target_name': 'test_extension', 650 'target_name': 'test_extension',
651 'type': 'shared_library', 651 'type': 'shared_library',
652 'dependencies': [ 652 'dependencies': [
653 'dart', 653 'dart',
654 ], 654 ],
655 'include_dirs': [ 655 'include_dirs': [
656 '..', 656 '..',
657 ], 657 ],
658 'cflags!': [
659 '-Wnon-virtual-dtor',
660 '-Woverloaded-virtual',
661 '-fno-rtti',
662 '-fvisibility-inlines-hidden',
663 '-Wno-conversion-null',
664 ],
658 'sources': [ 665 'sources': [
659 'test_extension.c', 666 'test_extension.c',
660 'test_extension_dllmain_win.cc', 667 'test_extension_dllmain_win.cc',
661 ], 668 ],
662 'defines': [ 669 'defines': [
663 # The only effect of DART_SHARED_LIB is to export the Dart API. 670 # The only effect of DART_SHARED_LIB is to export the Dart API.
664 'DART_SHARED_LIB', 671 'DART_SHARED_LIB',
665 ], 672 ],
666 'conditions': [ 673 'conditions': [
667 ['OS=="win"', { 674 ['OS=="win"', {
(...skipping 14 matching lines...) Expand all
682 '-fPIC', 689 '-fPIC',
683 ], 690 ],
684 }], 691 }],
685 ], 692 ],
686 }, 693 },
687 ], 694 ],
688 }], 695 }],
689 ], 696 ],
690 } 697 }
691 698
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698