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

Side by Side Diff: vm/vm.gypi

Issue 9433021: - Windows only: Move the BN library link dependency into the standalone binaries. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « bin/bin.gypi ('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_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc', 9 'corelib_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc',
10 'snapshot_test_dat_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_test.dat', 10 'snapshot_test_dat_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_test.dat',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'OTHER_LDFLAGS': [ 44 'OTHER_LDFLAGS': [
45 '-lcrypto', 45 '-lcrypto',
46 ], 46 ],
47 }, 47 },
48 }, 48 },
49 }], 49 }],
50 ['OS=="win"', { 50 ['OS=="win"', {
51 'sources/' : [ 51 'sources/' : [
52 ['exclude', 'gdbjit.cc'], 52 ['exclude', 'gdbjit.cc'],
53 ], 53 ],
54 'link_settings': {
55 'libraries': [ '-llibeay32MT.lib' ],
56 },
57 }]], 54 }]],
58 }, 55 },
59 { 56 {
60 'target_name': 'libdart_lib_withcore', 57 'target_name': 'libdart_lib_withcore',
61 'type': 'static_library', 58 'type': 'static_library',
62 'dependencies': [ 59 'dependencies': [
63 'generate_corelib_cc_file', 60 'generate_corelib_cc_file',
64 'generate_corelib_impl_cc_file', 61 'generate_corelib_impl_cc_file',
65 ], 62 ],
66 'includes': [ 63 'includes': [
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 '--include', 'INTENTIONALLY_LEFT_BLANK', 205 '--include', 'INTENTIONALLY_LEFT_BLANK',
209 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', 206 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO',
210 '<(snapshot_test_dart_file)', 207 '<(snapshot_test_dart_file)',
211 ], 208 ],
212 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' 209 'message': 'Generating ''<(snapshot_test_dat_file)'' file.'
213 }, 210 },
214 ] 211 ]
215 }, 212 },
216 ] 213 ]
217 } 214 }
OLDNEW
« no previous file with comments | « bin/bin.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698