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

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

Issue 12321129: Expand part declarations in the builtin library python scripts to avoid having to repeat part decla… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « no previous file | runtime/bin/io.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 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', 7 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc',
8 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', 8 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc',
9 'builtin_in_cc_file': 'builtin_in.cc', 9 'builtin_in_cc_file': 'builtin_in.cc',
10 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', 10 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 'message': 'Generating ''<(builtin_cc_file)'' file.' 42 'message': 'Generating ''<(builtin_cc_file)'' file.'
43 }, 43 },
44 ] 44 ]
45 }, 45 },
46 { 46 {
47 'target_name': 'generate_io_cc_file', 47 'target_name': 'generate_io_cc_file',
48 'type': 'none', 48 'type': 'none',
49 'variables': { 49 'variables': {
50 'io_dart': '<(SHARED_INTERMEDIATE_DIR)/io_gen.dart', 50 'io_dart': '<(SHARED_INTERMEDIATE_DIR)/io_gen.dart',
51 }, 51 },
52 'sources': [
53 'io.dart',
54 ],
55 'includes': [ 52 'includes': [
56 '../../sdk/lib/io/iolib_sources.gypi', 53 '../../sdk/lib/io/iolib_sources.gypi',
57 ], 54 ],
58 'actions': [ 55 'actions': [
59 { 56 {
60 'action_name': 'generate_io_dart', 57 'action_name': 'generate_io_dart',
61 'inputs': [ 58 'inputs': [
62 '../tools/concat_library.py', 59 '../tools/concat_library.py',
63 '<@(_sources)', 60 '<@(_sources)',
64 ], 61 ],
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
493 ['OS=="mac"', { 490 ['OS=="mac"', {
494 'xcode_settings': { 491 'xcode_settings': {
495 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], 492 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ],
496 }, 493 },
497 }], 494 }],
498 ], 495 ],
499 }, 496 },
500 ], 497 ],
501 } 498 }
502 499
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698