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

Side by Side Diff: vm/vm.gypi

Issue 9481019: Changes to get rid of dependency on openssl in the dart VM. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 9 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
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 16 matching lines...) Expand all
27 ], 27 ],
28 'include_dirs': [ 28 'include_dirs': [
29 '..', 29 '..',
30 ], 30 ],
31 'conditions': [ 31 'conditions': [
32 ['OS=="linux"', { 32 ['OS=="linux"', {
33 'link_settings': { 33 'link_settings': {
34 'libraries': [ 34 'libraries': [
35 '-lpthread', 35 '-lpthread',
36 '-lrt', 36 '-lrt',
37 '-lcrypto',
38 ], 37 ],
39 }, 38 },
40 }], 39 }],
41 ['OS=="mac"', {
42 'link_settings': {
43 'xcode_settings': {
44 'OTHER_LDFLAGS': [
45 '-lcrypto',
46 ],
47 },
48 },
49 }],
50 ['OS=="win"', { 40 ['OS=="win"', {
51 'sources/' : [ 41 'sources/' : [
52 ['exclude', 'gdbjit.cc'], 42 ['exclude', 'gdbjit.cc'],
53 ], 43 ],
54 }]], 44 }]],
55 }, 45 },
56 { 46 {
57 'target_name': 'libdart_lib_withcore', 47 'target_name': 'libdart_lib_withcore',
58 'type': 'static_library', 48 'type': 'static_library',
59 'dependencies': [ 49 'dependencies': [
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 '--include', 'INTENTIONALLY_LEFT_BLANK', 195 '--include', 'INTENTIONALLY_LEFT_BLANK',
206 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', 196 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO',
207 '<(snapshot_test_dart_file)', 197 '<(snapshot_test_dart_file)',
208 ], 198 ],
209 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' 199 'message': 'Generating ''<(snapshot_test_dat_file)'' file.'
210 }, 200 },
211 ] 201 ]
212 }, 202 },
213 ] 203 ]
214 } 204 }
OLDNEW
« vm/object.cc ('K') | « vm/snapshot_test.cc ('k') | vm/vm_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698