| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |