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

Side by Side Diff: runtime/dart-runtime.gyp

Issue 1714743002: VM: Separate precompilation-specific code, make flags const. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: fix build after merge Created 4 years, 10 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/bin.gypi ('k') | runtime/lib/mirrors.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) 2011, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2011, 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 'includes': [ 6 'includes': [
7 'tools/gyp/runtime-configurations.gypi', 7 'tools/gyp/runtime-configurations.gypi',
8 'vm/vm.gypi', 8 'vm/vm.gypi',
9 'observatory/observatory.gypi', 9 'observatory/observatory.gypi',
10 'bin/bin.gypi', 10 'bin/bin.gypi',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 'direct_dependent_settings': { 88 'direct_dependent_settings': {
89 'include_dirs': [ 89 'include_dirs': [
90 'include', 90 'include',
91 ], 91 ],
92 }, 92 },
93 }, 93 },
94 { 94 {
95 'target_name': 'libdart_precompiled_runtime', 95 'target_name': 'libdart_precompiled_runtime',
96 'type': 'static_library', 96 'type': 'static_library',
97 'dependencies': [ 97 'dependencies': [
98 'libdart_lib', 98 'libdart_lib_precompiled_runtime',
99 'libdart_vm_precompiled_runtime', 99 'libdart_vm_precompiled_runtime',
100 'libdouble_conversion', 100 'libdouble_conversion',
101 'generate_version_cc_file#host', 101 'generate_version_cc_file#host',
102 ], 102 ],
103 'include_dirs': [ 103 'include_dirs': [
104 '.', 104 '.',
105 ], 105 ],
106 'sources': [ 106 'sources': [
107 'include/dart_api.h', 107 'include/dart_api.h',
108 'include/dart_mirrors_api.h', 108 'include/dart_mirrors_api.h',
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 }], 227 }],
228 ['OS=="linux"', { 228 ['OS=="linux"', {
229 'cflags': [ 229 'cflags': [
230 '-fPIC', 230 '-fPIC',
231 ], 231 ],
232 }], 232 }],
233 ], 233 ],
234 }, 234 },
235 ], 235 ],
236 } 236 }
OLDNEW
« no previous file with comments | « runtime/bin/bin.gypi ('k') | runtime/lib/mirrors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698