| OLD | NEW |
| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 ], | 132 ], |
| 133 'include_dirs': [ | 133 'include_dirs': [ |
| 134 '..', | 134 '..', |
| 135 ], | 135 ], |
| 136 'sources': [ | 136 'sources': [ |
| 137 'log_android.cc', | 137 'log_android.cc', |
| 138 'log_linux.cc', | 138 'log_linux.cc', |
| 139 'log_macos.cc', | 139 'log_macos.cc', |
| 140 'log_win.cc', | 140 'log_win.cc', |
| 141 ], | 141 ], |
| 142 'defines': [ | |
| 143 'LEGACY_DEBUG_PROTOCOL_ENABLED', | |
| 144 ], | |
| 145 'includes': [ | 142 'includes': [ |
| 146 'builtin_impl_sources.gypi', | 143 'builtin_impl_sources.gypi', |
| 147 '../platform/platform_sources.gypi', | 144 '../platform/platform_sources.gypi', |
| 148 ], | 145 ], |
| 149 'sources/': [ | 146 'sources/': [ |
| 150 ['exclude', '_test\\.(cc|h)$'], | 147 ['exclude', '_test\\.(cc|h)$'], |
| 151 ], | 148 ], |
| 152 'conditions': [ | 149 'conditions': [ |
| 153 ['OS=="win"', { | 150 ['OS=="win"', { |
| 154 'sources/' : [ | 151 'sources/' : [ |
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 '<(builtin_cc_file)', | 769 '<(builtin_cc_file)', |
| 773 '<(io_cc_file)', | 770 '<(io_cc_file)', |
| 774 '<(io_patch_cc_file)', | 771 '<(io_patch_cc_file)', |
| 775 ], | 772 ], |
| 776 'includes': [ | 773 'includes': [ |
| 777 'builtin_impl_sources.gypi', | 774 'builtin_impl_sources.gypi', |
| 778 '../platform/platform_sources.gypi', | 775 '../platform/platform_sources.gypi', |
| 779 '../vm/vm_sources.gypi', | 776 '../vm/vm_sources.gypi', |
| 780 ], | 777 ], |
| 781 'defines': [ | 778 'defines': [ |
| 782 'LEGACY_DEBUG_PROTOCOL_ENABLED', | |
| 783 'TESTING', | 779 'TESTING', |
| 784 ], | 780 ], |
| 785 # Only include _test.[cc|h] files. | 781 # Only include _test.[cc|h] files. |
| 786 'sources/': [ | 782 'sources/': [ |
| 787 ['exclude', '\\.(cc|h)$'], | 783 ['exclude', '\\.(cc|h)$'], |
| 788 ['include', 'run_vm_tests.cc'], | 784 ['include', 'run_vm_tests.cc'], |
| 789 ['include', 'builtin_nolib.cc'], | 785 ['include', 'builtin_nolib.cc'], |
| 790 ['include', 'builtin_natives.cc'], | 786 ['include', 'builtin_natives.cc'], |
| 791 ['include', '_gen\\.cc$'], | 787 ['include', '_gen\\.cc$'], |
| 792 ['include', '_test\\.(cc|h)$'], | 788 ['include', '_test\\.(cc|h)$'], |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 848 }], | 844 }], |
| 849 ['OS=="linux"', { | 845 ['OS=="linux"', { |
| 850 'cflags': [ | 846 'cflags': [ |
| 851 '-fPIC', | 847 '-fPIC', |
| 852 ], | 848 ], |
| 853 }], | 849 }], |
| 854 ], | 850 ], |
| 855 }, | 851 }, |
| 856 ], | 852 ], |
| 857 } | 853 } |
| OLD | NEW |