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

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

Issue 2023703002: Beginning work on GN build (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Really add //build. Add dart_bootstrap rule. Created 4 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
« no previous file with comments | « runtime/bin/BUILD.gn ('k') | runtime/bin/builtin.cc » ('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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 ], 250 ],
251 'outputs': [ 251 'outputs': [
252 '<(blink_cc_file)', 252 '<(blink_cc_file)',
253 ], 253 ],
254 'action': [ 254 'action': [
255 'python', 255 'python',
256 'tools/gen_library_src_paths.py', 256 'tools/gen_library_src_paths.py',
257 '--output', '<(blink_cc_file)', 257 '--output', '<(blink_cc_file)',
258 '--input_cc', '<(builtin_in_cc_file)', 258 '--input_cc', '<(builtin_in_cc_file)',
259 '--include', 'bin/builtin.h', 259 '--include', 'bin/builtin.h',
260 '--var_name', 'dart::bin::Builtin::blink_source_paths_', 260 '--var_name', 'dart::bin::Builtin::_blink_source_paths_',
261 '--library_name', 'dart:_blink', 261 '--library_name', 'dart:_blink',
262 '<@(_sources)', 262 '<@(_sources)',
263 ], 263 ],
264 'message': 'Generating ''<(blink_cc_file)'' file.' 264 'message': 'Generating ''<(blink_cc_file)'' file.'
265 }, 265 },
266 ] 266 ]
267 }, 267 },
268 { 268 {
269 'target_name': 'generate_indexeddb_cc_file', 269 'target_name': 'generate_indexeddb_cc_file',
270 'type': 'none', 270 'type': 'none',
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 ], 410 ],
411 'outputs': [ 411 'outputs': [
412 '<(websql_cc_file)', 412 '<(websql_cc_file)',
413 ], 413 ],
414 'action': [ 414 'action': [
415 'python', 415 'python',
416 'tools/gen_library_src_paths.py', 416 'tools/gen_library_src_paths.py',
417 '--output', '<(websql_cc_file)', 417 '--output', '<(websql_cc_file)',
418 '--input_cc', '<(builtin_in_cc_file)', 418 '--input_cc', '<(builtin_in_cc_file)',
419 '--include', 'bin/builtin.h', 419 '--include', 'bin/builtin.h',
420 '--var_name', 'dart::bin::Builtin::websql_source_paths_', 420 '--var_name', 'dart::bin::Builtin::web_sql_source_paths_',
421 '--library_name', 'dart:web_sql', 421 '--library_name', 'dart:web_sql',
422 '<@(_sources)', 422 '<@(_sources)',
423 ], 423 ],
424 'message': 'Generating ''<(websql_cc_file)'' file.' 424 'message': 'Generating ''<(websql_cc_file)'' file.'
425 }, 425 },
426 ] 426 ]
427 }, 427 },
428 { 428 {
429 'target_name': 'generate_svg_cc_file', 429 'target_name': 'generate_svg_cc_file',
430 'type': 'none', 430 'type': 'none',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 ], 474 ],
475 'outputs': [ 475 'outputs': [
476 '<(webaudio_cc_file)', 476 '<(webaudio_cc_file)',
477 ], 477 ],
478 'action': [ 478 'action': [
479 'python', 479 'python',
480 'tools/gen_library_src_paths.py', 480 'tools/gen_library_src_paths.py',
481 '--output', '<(webaudio_cc_file)', 481 '--output', '<(webaudio_cc_file)',
482 '--input_cc', '<(builtin_in_cc_file)', 482 '--input_cc', '<(builtin_in_cc_file)',
483 '--include', 'bin/builtin.h', 483 '--include', 'bin/builtin.h',
484 '--var_name', 'dart::bin::Builtin::webaudio_source_paths_', 484 '--var_name', 'dart::bin::Builtin::web_audio_source_paths_',
485 '--library_name', 'dart:web_audio', 485 '--library_name', 'dart:web_audio',
486 '<@(_sources)', 486 '<@(_sources)',
487 ], 487 ],
488 'message': 'Generating ''<(webaudio_cc_file)'' file.' 488 'message': 'Generating ''<(webaudio_cc_file)'' file.'
489 }, 489 },
490 ] 490 ]
491 }, 491 },
492 { 492 {
493 'target_name': 'libdart_builtin', 493 'target_name': 'libdart_builtin',
494 'type': 'static_library', 494 'type': 'static_library',
(...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after
1397 }], 1397 }],
1398 ['OS=="linux"', { 1398 ['OS=="linux"', {
1399 'cflags': [ 1399 'cflags': [
1400 '-fPIC', 1400 '-fPIC',
1401 ], 1401 ],
1402 }], 1402 }],
1403 ], 1403 ],
1404 }, 1404 },
1405 ], 1405 ],
1406 } 1406 }
OLDNEW
« no previous file with comments | « runtime/bin/BUILD.gn ('k') | runtime/bin/builtin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698