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 'builtin_in_cc_file': '../bin/builtin_in.cc', | 7 'builtin_in_cc_file': '../bin/builtin_in.cc', |
8 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc', | 8 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc', |
9 'corelib_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_patch_gen.cc', | 9 'corelib_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_patch_gen.cc', |
10 'corelib_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc', | 10 'corelib_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc', |
(...skipping 18 matching lines...) Expand all Loading... |
29 '../platform/platform_sources.gypi', | 29 '../platform/platform_sources.gypi', |
30 ], | 30 ], |
31 'sources/': [ | 31 'sources/': [ |
32 # Exclude all _test.[cc|h] files. | 32 # Exclude all _test.[cc|h] files. |
33 ['exclude', '_test\\.cc|h$'], | 33 ['exclude', '_test\\.cc|h$'], |
34 ], | 34 ], |
35 'include_dirs': [ | 35 'include_dirs': [ |
36 '..', | 36 '..', |
37 ], | 37 ], |
38 'conditions': [ | 38 'conditions': [ |
| 39 ['OS=="android"', { |
| 40 'link_settings': { |
| 41 'libraries': [ |
| 42 '-lc', |
| 43 '-lpthread', |
| 44 ], |
| 45 }, |
| 46 }], |
39 ['OS=="linux"', { | 47 ['OS=="linux"', { |
40 'link_settings': { | 48 'link_settings': { |
41 'libraries': [ | 49 'libraries': [ |
42 '-lpthread', | 50 '-lpthread', |
43 '-lrt', | 51 '-lrt', |
44 ], | 52 ], |
45 }, | 53 }, |
46 }], | 54 }], |
47 ['OS=="win"', { | 55 ['OS=="win"', { |
48 'sources/' : [ | 56 'sources/' : [ |
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
507 '--include', 'INTENTIONALLY_LEFT_BLANK', | 515 '--include', 'INTENTIONALLY_LEFT_BLANK', |
508 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', | 516 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', |
509 '<(snapshot_test_dart_file)', | 517 '<(snapshot_test_dart_file)', |
510 ], | 518 ], |
511 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' | 519 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' |
512 }, | 520 }, |
513 ] | 521 ] |
514 }, | 522 }, |
515 ] | 523 ] |
516 } | 524 } |
OLD | NEW |