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

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

Issue 1376143004: Fix build breakage encountered by Flutter (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « runtime/bin/BUILD.gn ('k') | runtime/bin/process.cc » ('j') | 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 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', 7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)',
8 8
9 'io_cc_file': '<(gen_source_dir)/io_gen.cc', 9 'io_cc_file': '<(gen_source_dir)/io_gen.cc',
10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc', 10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 ], 130 ],
131 'include_dirs': [ 131 'include_dirs': [
132 '..', 132 '..',
133 ], 133 ],
134 'sources': [ 134 'sources': [
135 'log_android.cc', 135 'log_android.cc',
136 'log_linux.cc', 136 'log_linux.cc',
137 'log_macos.cc', 137 'log_macos.cc',
138 'log_win.cc', 138 'log_win.cc',
139 ], 139 ],
140 'defines': [
141 'LEGACY_DEBUG_PROTOCOL_ENABLED',
142 ],
140 'includes': [ 143 'includes': [
141 'builtin_impl_sources.gypi', 144 'builtin_impl_sources.gypi',
142 '../platform/platform_sources.gypi', 145 '../platform/platform_sources.gypi',
143 ], 146 ],
144 'sources/': [ 147 'sources/': [
145 ['exclude', '_test\\.(cc|h)$'], 148 ['exclude', '_test\\.(cc|h)$'],
146 ], 149 ],
147 'conditions': [ 150 'conditions': [
148 ['OS=="win"', { 151 ['OS=="win"', {
149 'sources/' : [ 152 'sources/' : [
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
730 '<(builtin_cc_file)', 733 '<(builtin_cc_file)',
731 '<(io_cc_file)', 734 '<(io_cc_file)',
732 '<(io_patch_cc_file)', 735 '<(io_patch_cc_file)',
733 ], 736 ],
734 'includes': [ 737 'includes': [
735 'builtin_impl_sources.gypi', 738 'builtin_impl_sources.gypi',
736 '../platform/platform_sources.gypi', 739 '../platform/platform_sources.gypi',
737 '../vm/vm_sources.gypi', 740 '../vm/vm_sources.gypi',
738 ], 741 ],
739 'defines': [ 742 'defines': [
743 'LEGACY_DEBUG_PROTOCOL_ENABLED',
740 'TESTING', 744 'TESTING',
741 ], 745 ],
742 # Only include _test.[cc|h] files. 746 # Only include _test.[cc|h] files.
743 'sources/': [ 747 'sources/': [
744 ['exclude', '\\.(cc|h)$'], 748 ['exclude', '\\.(cc|h)$'],
745 ['include', 'run_vm_tests.cc'], 749 ['include', 'run_vm_tests.cc'],
746 ['include', 'builtin_nolib.cc'], 750 ['include', 'builtin_nolib.cc'],
747 ['include', 'builtin_natives.cc'], 751 ['include', 'builtin_natives.cc'],
748 ['include', '_gen\\.cc$'], 752 ['include', '_gen\\.cc$'],
749 ['include', '_test\\.(cc|h)$'], 753 ['include', '_test\\.(cc|h)$'],
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
805 }], 809 }],
806 ['OS=="linux"', { 810 ['OS=="linux"', {
807 'cflags': [ 811 'cflags': [
808 '-fPIC', 812 '-fPIC',
809 ], 813 ],
810 }], 814 }],
811 ], 815 ],
812 }, 816 },
813 ], 817 ],
814 } 818 }
OLDNEW
« no previous file with comments | « runtime/bin/BUILD.gn ('k') | runtime/bin/process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698