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

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

Issue 288983008: Fix bin.gypi and all the bots! (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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 | no next file » | 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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 'toolsets':['host'], 353 'toolsets':['host'],
354 'includes': [ 354 'includes': [
355 'resources_sources.gypi', 355 'resources_sources.gypi',
356 ], 356 ],
357 'actions': [ 357 'actions': [
358 { 358 {
359 'action_name': 'generate_resources_cc', 359 'action_name': 'generate_resources_cc',
360 'inputs': [ 360 'inputs': [
361 '../tools/create_resources.py', 361 '../tools/create_resources.py',
362 # The following two files are used to trigger a rebuild. 362 # The following two files are used to trigger a rebuild.
363 'bin/vmservice/client/deployed/web/index.html', 363 'vmservice/client/deployed/web/index.html',
364 'bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js', 364 'vmservice/client/deployed/web/index.html_bootstrap.dart.js',
365 '<@(_sources)', 365 '<@(_sources)',
366 ], 366 ],
367 'outputs': [ 367 'outputs': [
368 '<(resources_cc_file)', 368 '<(resources_cc_file)',
369 ], 369 ],
370 'action': [ 370 'action': [
371 'python', 371 'python',
372 'tools/create_resources.py', 372 'tools/create_resources.py',
373 '--output', '<(resources_cc_file)', 373 '--output', '<(resources_cc_file)',
374 '--outer_namespace', 'dart', 374 '--outer_namespace', 'dart',
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 }], 583 }],
584 ['OS=="linux"', { 584 ['OS=="linux"', {
585 'cflags': [ 585 'cflags': [
586 '-fPIC', 586 '-fPIC',
587 ], 587 ],
588 }], 588 }],
589 ], 589 ],
590 }, 590 },
591 ], 591 ],
592 } 592 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698