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

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
« no previous file with comments | « vm/snapshot_test.cc ('k') | vm/vm_sources.gypi » ('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) 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 'isolate_cc_file': '<(SHARED_INTERMEDIATE_DIR)/isolate_gen.cc', 10 'isolate_cc_file': '<(SHARED_INTERMEDIATE_DIR)/isolate_gen.cc',
(...skipping 17 matching lines...) Expand all
28 ], 28 ],
29 'include_dirs': [ 29 'include_dirs': [
30 '..', 30 '..',
31 ], 31 ],
32 'conditions': [ 32 'conditions': [
33 ['OS=="linux"', { 33 ['OS=="linux"', {
34 'link_settings': { 34 'link_settings': {
35 'libraries': [ 35 'libraries': [
36 '-lpthread', 36 '-lpthread',
37 '-lrt', 37 '-lrt',
38 '-lcrypto',
39 ], 38 ],
40 }, 39 },
41 }], 40 }],
42 ['OS=="mac"', {
43 'link_settings': {
44 'xcode_settings': {
45 'OTHER_LDFLAGS': [
46 '-lcrypto',
47 ],
48 },
49 },
50 }],
51 ['OS=="win"', { 41 ['OS=="win"', {
52 'sources/' : [ 42 'sources/' : [
53 ['exclude', 'gdbjit.cc'], 43 ['exclude', 'gdbjit.cc'],
54 ], 44 ],
55 }]], 45 }]],
56 }, 46 },
57 { 47 {
58 'target_name': 'libdart_lib_withcore', 48 'target_name': 'libdart_lib_withcore',
59 'type': 'static_library', 49 'type': 'static_library',
60 'dependencies': [ 50 'dependencies': [
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 '--include', 'INTENTIONALLY_LEFT_BLANK', 243 '--include', 'INTENTIONALLY_LEFT_BLANK',
254 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', 244 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO',
255 '<(snapshot_test_dart_file)', 245 '<(snapshot_test_dart_file)',
256 ], 246 ],
257 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' 247 'message': 'Generating ''<(snapshot_test_dat_file)'' file.'
258 }, 248 },
259 ] 249 ]
260 }, 250 },
261 ] 251 ]
262 } 252 }
OLDNEW
« no previous file with comments | « vm/snapshot_test.cc ('k') | vm/vm_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698