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

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

Issue 11316031: - Move MathNatives from dart:core to dart:math. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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 | « runtime/vm/scanner.cc ('k') | 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 'builtin_in_cc_file': '../bin/builtin_in.cc', 7 'builtin_in_cc_file': '../bin/builtin_in.cc',
8 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc', 8 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc',
9 'corelib_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_patch_gen.cc', 9 'corelib_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_patch_gen.cc',
10 'collection_cc_file': '<(SHARED_INTERMEDIATE_DIR)/collection_gen.cc', 10 'collection_cc_file': '<(SHARED_INTERMEDIATE_DIR)/collection_gen.cc',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'generate_isolate_cc_file', 71 'generate_isolate_cc_file',
72 'generate_isolate_patch_cc_file', 72 'generate_isolate_patch_cc_file',
73 'generate_mirrors_cc_file', 73 'generate_mirrors_cc_file',
74 'generate_mirrors_patch_cc_file', 74 'generate_mirrors_patch_cc_file',
75 'generate_scalarlist_cc_file', 75 'generate_scalarlist_cc_file',
76 'generate_scalarlist_patch_cc_file', 76 'generate_scalarlist_patch_cc_file',
77 ], 77 ],
78 'includes': [ 78 'includes': [
79 '../lib/lib_sources.gypi', 79 '../lib/lib_sources.gypi',
80 '../lib/isolate_sources.gypi', 80 '../lib/isolate_sources.gypi',
81 '../lib/math_sources.gypi',
81 '../lib/mirrors_sources.gypi', 82 '../lib/mirrors_sources.gypi',
82 '../lib/scalarlist_sources.gypi', 83 '../lib/scalarlist_sources.gypi',
83 ], 84 ],
84 'sources': [ 85 'sources': [
85 'bootstrap.cc', 86 'bootstrap.cc',
86 # Include generated source files. 87 # Include generated source files.
87 '<(corelib_cc_file)', 88 '<(corelib_cc_file)',
88 '<(corelib_patch_cc_file)', 89 '<(corelib_patch_cc_file)',
89 '<(collection_cc_file)', 90 '<(collection_cc_file)',
90 '<(math_cc_file)', 91 '<(math_cc_file)',
91 '<(math_patch_cc_file)', 92 '<(math_patch_cc_file)',
92 '<(isolate_cc_file)', 93 '<(isolate_cc_file)',
93 '<(isolate_patch_cc_file)', 94 '<(isolate_patch_cc_file)',
94 '<(mirrors_cc_file)', 95 '<(mirrors_cc_file)',
95 '<(mirrors_patch_cc_file)', 96 '<(mirrors_patch_cc_file)',
96 '<(scalarlist_cc_file)', 97 '<(scalarlist_cc_file)',
97 '<(scalarlist_patch_cc_file)', 98 '<(scalarlist_patch_cc_file)',
98 ], 99 ],
99 'include_dirs': [ 100 'include_dirs': [
100 '..', 101 '..',
101 ], 102 ],
102 }, 103 },
103 { 104 {
104 'target_name': 'libdart_lib', 105 'target_name': 'libdart_lib',
105 'type': 'static_library', 106 'type': 'static_library',
106 'includes': [ 107 'includes': [
107 '../lib/lib_sources.gypi', 108 '../lib/lib_sources.gypi',
108 '../lib/isolate_sources.gypi', 109 '../lib/isolate_sources.gypi',
110 '../lib/math_sources.gypi',
109 '../lib/mirrors_sources.gypi', 111 '../lib/mirrors_sources.gypi',
110 '../lib/scalarlist_sources.gypi', 112 '../lib/scalarlist_sources.gypi',
111 ], 113 ],
112 'sources': [ 114 'sources': [
113 'bootstrap_nocorelib.cc', 115 'bootstrap_nocorelib.cc',
114 ], 116 ],
115 'include_dirs': [ 117 'include_dirs': [
116 '..', 118 '..',
117 ], 119 ],
118 }, 120 },
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 '--include', 'INTENTIONALLY_LEFT_BLANK', 558 '--include', 'INTENTIONALLY_LEFT_BLANK',
557 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', 559 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO',
558 '<(snapshot_test_dart_file)', 560 '<(snapshot_test_dart_file)',
559 ], 561 ],
560 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' 562 'message': 'Generating ''<(snapshot_test_dat_file)'' file.'
561 }, 563 },
562 ] 564 ]
563 }, 565 },
564 ] 566 ]
565 } 567 }
OLDNEW
« no previous file with comments | « runtime/vm/scanner.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698