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

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

Issue 15820008: Remove library dart:crypto (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments Created 7 years, 6 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 | « runtime/vm/symbols.h ('k') | sdk/lib/_internal/libraries.dart » ('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 'gen_source_dir': '<(LIB_DIR)', 7 'gen_source_dir': '<(LIB_DIR)',
8 'libgen_in_cc_file': '../lib/libgen_in.cc', 8 'libgen_in_cc_file': '../lib/libgen_in.cc',
9 'builtin_in_cc_file': '../bin/builtin_in.cc', 9 'builtin_in_cc_file': '../bin/builtin_in.cc',
10 'async_cc_file': '<(gen_source_dir)/async_gen.cc', 10 'async_cc_file': '<(gen_source_dir)/async_gen.cc',
11 'async_patch_cc_file': '<(gen_source_dir)/async_patch_gen.cc', 11 'async_patch_cc_file': '<(gen_source_dir)/async_patch_gen.cc',
12 'corelib_cc_file': '<(gen_source_dir)/corelib_gen.cc', 12 'corelib_cc_file': '<(gen_source_dir)/corelib_gen.cc',
13 'corelib_patch_cc_file': '<(gen_source_dir)/corelib_patch_gen.cc', 13 'corelib_patch_cc_file': '<(gen_source_dir)/corelib_patch_gen.cc',
14 'collection_cc_file': '<(gen_source_dir)/collection_gen.cc', 14 'collection_cc_file': '<(gen_source_dir)/collection_gen.cc',
15 'collection_patch_cc_file': '<(gen_source_dir)/collection_patch_gen.cc', 15 'collection_patch_cc_file': '<(gen_source_dir)/collection_patch_gen.cc',
16 'collection_dev_cc_file': '<(gen_source_dir)/collection_dev_gen.cc', 16 'collection_dev_cc_file': '<(gen_source_dir)/collection_dev_gen.cc',
17 'collection_dev_patch_cc_file': '<(gen_source_dir)/collection_dev_patch_gen. cc', 17 'collection_dev_patch_cc_file': '<(gen_source_dir)/collection_dev_patch_gen. cc',
18 'crypto_cc_file': '<(gen_source_dir)/crypto_gen.cc',
19 'math_cc_file': '<(gen_source_dir)/math_gen.cc', 18 'math_cc_file': '<(gen_source_dir)/math_gen.cc',
20 'math_patch_cc_file': '<(gen_source_dir)/math_patch_gen.cc', 19 'math_patch_cc_file': '<(gen_source_dir)/math_patch_gen.cc',
21 'mirrors_cc_file': '<(gen_source_dir)/mirrors_gen.cc', 20 'mirrors_cc_file': '<(gen_source_dir)/mirrors_gen.cc',
22 'mirrors_patch_cc_file': '<(gen_source_dir)/mirrors_patch_gen.cc', 21 'mirrors_patch_cc_file': '<(gen_source_dir)/mirrors_patch_gen.cc',
23 'isolate_cc_file': '<(gen_source_dir)/isolate_gen.cc', 22 'isolate_cc_file': '<(gen_source_dir)/isolate_gen.cc',
24 'isolate_patch_cc_file': '<(gen_source_dir)/isolate_patch_gen.cc', 23 'isolate_patch_cc_file': '<(gen_source_dir)/isolate_patch_gen.cc',
25 'json_cc_file': '<(gen_source_dir)/json_gen.cc', 24 'json_cc_file': '<(gen_source_dir)/json_gen.cc',
26 'json_patch_cc_file': '<(gen_source_dir)/json_patch_gen.cc', 25 'json_patch_cc_file': '<(gen_source_dir)/json_patch_gen.cc',
27 'typed_data_cc_file': '<(gen_source_dir)/typed_data_gen.cc', 26 'typed_data_cc_file': '<(gen_source_dir)/typed_data_gen.cc',
28 'typed_data_patch_cc_file': '<(gen_source_dir)/typed_data_patch_gen.cc', 27 'typed_data_patch_cc_file': '<(gen_source_dir)/typed_data_patch_gen.cc',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 'toolsets':['host', 'target'], 94 'toolsets':['host', 'target'],
96 'dependencies': [ 95 'dependencies': [
97 'generate_async_cc_file', 96 'generate_async_cc_file',
98 'generate_async_patch_cc_file', 97 'generate_async_patch_cc_file',
99 'generate_corelib_cc_file', 98 'generate_corelib_cc_file',
100 'generate_corelib_patch_cc_file', 99 'generate_corelib_patch_cc_file',
101 'generate_collection_cc_file', 100 'generate_collection_cc_file',
102 'generate_collection_patch_cc_file', 101 'generate_collection_patch_cc_file',
103 'generate_collection_dev_cc_file', 102 'generate_collection_dev_cc_file',
104 'generate_collection_dev_patch_cc_file', 103 'generate_collection_dev_patch_cc_file',
105 'generate_crypto_cc_file',
106 'generate_math_cc_file', 104 'generate_math_cc_file',
107 'generate_math_patch_cc_file', 105 'generate_math_patch_cc_file',
108 'generate_isolate_cc_file', 106 'generate_isolate_cc_file',
109 'generate_isolate_patch_cc_file', 107 'generate_isolate_patch_cc_file',
110 'generate_json_cc_file', 108 'generate_json_cc_file',
111 'generate_json_patch_cc_file', 109 'generate_json_patch_cc_file',
112 'generate_mirrors_cc_file', 110 'generate_mirrors_cc_file',
113 'generate_mirrors_patch_cc_file', 111 'generate_mirrors_patch_cc_file',
114 'generate_typed_data_cc_file', 112 'generate_typed_data_cc_file',
115 'generate_typed_data_patch_cc_file', 113 'generate_typed_data_patch_cc_file',
(...skipping 12 matching lines...) Expand all
128 'bootstrap.cc', 126 'bootstrap.cc',
129 # Include generated source files. 127 # Include generated source files.
130 '<(async_cc_file)', 128 '<(async_cc_file)',
131 '<(async_patch_cc_file)', 129 '<(async_patch_cc_file)',
132 '<(corelib_cc_file)', 130 '<(corelib_cc_file)',
133 '<(corelib_patch_cc_file)', 131 '<(corelib_patch_cc_file)',
134 '<(collection_cc_file)', 132 '<(collection_cc_file)',
135 '<(collection_patch_cc_file)', 133 '<(collection_patch_cc_file)',
136 '<(collection_dev_cc_file)', 134 '<(collection_dev_cc_file)',
137 '<(collection_dev_patch_cc_file)', 135 '<(collection_dev_patch_cc_file)',
138 '<(crypto_cc_file)',
139 '<(math_cc_file)', 136 '<(math_cc_file)',
140 '<(math_patch_cc_file)', 137 '<(math_patch_cc_file)',
141 '<(isolate_cc_file)', 138 '<(isolate_cc_file)',
142 '<(isolate_patch_cc_file)', 139 '<(isolate_patch_cc_file)',
143 '<(json_cc_file)', 140 '<(json_cc_file)',
144 '<(json_patch_cc_file)', 141 '<(json_patch_cc_file)',
145 '<(mirrors_cc_file)', 142 '<(mirrors_cc_file)',
146 '<(mirrors_patch_cc_file)', 143 '<(mirrors_patch_cc_file)',
147 '<(typed_data_cc_file)', 144 '<(typed_data_cc_file)',
148 '<(typed_data_patch_cc_file)', 145 '<(typed_data_patch_cc_file)',
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 '--include', 'vm/bootstrap.h', 402 '--include', 'vm/bootstrap.h',
406 '--var_name', 'dart::Bootstrap::collection_dev_source_paths_', 403 '--var_name', 'dart::Bootstrap::collection_dev_source_paths_',
407 '--library_name', 'dart:_collection-dev', 404 '--library_name', 'dart:_collection-dev',
408 '<@(_sources)', 405 '<@(_sources)',
409 ], 406 ],
410 'message': 'Generating ''<(collection_dev_cc_file)'' file.' 407 'message': 'Generating ''<(collection_dev_cc_file)'' file.'
411 }, 408 },
412 ] 409 ]
413 }, 410 },
414 { 411 {
415 'target_name': 'generate_crypto_cc_file',
416 'type': 'none',
417 'toolsets':['host', 'target'],
418 'includes': [
419 # Load the shared crypto sources.
420 '../../sdk/lib/crypto/crypto_sources.gypi',
421 ],
422 'actions': [
423 {
424 'action_name': 'generate_crypto_cc',
425 'inputs': [
426 '../tools/gen_library_src_paths.py',
427 '<(libgen_in_cc_file)',
428 '<@(_sources)',
429 ],
430 'outputs': [
431 '<(crypto_cc_file)',
432 ],
433 'action': [
434 'python',
435 'tools/gen_library_src_paths.py',
436 '--output', '<(crypto_cc_file)',
437 '--input_cc', '<(libgen_in_cc_file)',
438 '--include', 'vm/bootstrap.h',
439 '--var_name', 'dart::Bootstrap::crypto_source_paths_',
440 '--library_name', 'dart:crypto',
441 '<@(_sources)',
442 ],
443 'message': 'Generating ''<(crypto_cc_file)'' file.'
444 },
445 ]
446 },
447 {
448 'target_name': 'generate_math_cc_file', 412 'target_name': 'generate_math_cc_file',
449 'type': 'none', 413 'type': 'none',
450 'toolsets':['host', 'target'], 414 'toolsets':['host', 'target'],
451 'includes': [ 415 'includes': [
452 # Load the shared math library sources. 416 # Load the shared math library sources.
453 '../../sdk/lib/math/math_sources.gypi', 417 '../../sdk/lib/math/math_sources.gypi',
454 ], 418 ],
455 'sources/': [ 419 'sources/': [
456 # Exclude all .[cc|h] files. 420 # Exclude all .[cc|h] files.
457 # This is only here for reference. Excludes happen after 421 # This is only here for reference. Excludes happen after
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
973 '--include', 'INTENTIONALLY_LEFT_BLANK', 937 '--include', 'INTENTIONALLY_LEFT_BLANK',
974 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', 938 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO',
975 '<(snapshot_test_dart_file)', 939 '<(snapshot_test_dart_file)',
976 ], 940 ],
977 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' 941 'message': 'Generating ''<(snapshot_test_dat_file)'' file.'
978 }, 942 },
979 ] 943 ]
980 }, 944 },
981 ] 945 ]
982 } 946 }
OLDNEW
« no previous file with comments | « runtime/vm/symbols.h ('k') | sdk/lib/_internal/libraries.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698