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

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

Issue 703693002: Regularize some naming to make BUILD.gn files easier to write. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 1 month 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/builtin.h » ('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': '<(SHARED_INTERMEDIATE_DIR)', 7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)',
8 8
9 'io_cc_file': '<(gen_source_dir)/io_gen.cc', 9 'io_cc_file': '<(gen_source_dir)/io_gen.cc',
10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc', 10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc',
(...skipping 22 matching lines...) Expand all
33 ], 33 ],
34 'outputs': [ 34 'outputs': [
35 '<(builtin_cc_file)', 35 '<(builtin_cc_file)',
36 ], 36 ],
37 'action': [ 37 'action': [
38 'python', 38 'python',
39 'tools/gen_library_src_paths.py', 39 'tools/gen_library_src_paths.py',
40 '--output', '<(builtin_cc_file)', 40 '--output', '<(builtin_cc_file)',
41 '--input_cc', '<(builtin_in_cc_file)', 41 '--input_cc', '<(builtin_in_cc_file)',
42 '--include', 'bin/builtin.h', 42 '--include', 'bin/builtin.h',
43 '--var_name', 'dart::bin::Builtin::builtin_source_paths_', 43 '--var_name', 'dart::bin::Builtin::_builtin_source_paths_',
44 '--library_name', 'dart:_builtin', 44 '--library_name', 'dart:_builtin',
45 '<@(_sources)', 45 '<@(_sources)',
46 ], 46 ],
47 'message': 'Generating ''<(builtin_cc_file)'' file.' 47 'message': 'Generating ''<(builtin_cc_file)'' file.'
48 }, 48 },
49 ] 49 ]
50 }, 50 },
51 { 51 {
52 'target_name': 'generate_io_cc_file', 52 'target_name': 'generate_io_cc_file',
53 'type': 'none', 53 'type': 'none',
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 }], 590 }],
591 ['OS=="linux"', { 591 ['OS=="linux"', {
592 'cflags': [ 592 'cflags': [
593 '-fPIC', 593 '-fPIC',
594 ], 594 ],
595 }], 595 }],
596 ], 596 ],
597 }, 597 },
598 ], 598 ],
599 } 599 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/builtin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698