Chromium Code Reviews| 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 380 'type': 'executable', | 380 'type': 'executable', |
| 381 'toolsets':['host'], | 381 'toolsets':['host'], |
| 382 'dependencies': [ | 382 'dependencies': [ |
| 383 'libdart_withcore', | 383 'libdart_withcore', |
| 384 'libdart_builtin', | 384 'libdart_builtin', |
| 385 ], | 385 ], |
| 386 'include_dirs': [ | 386 'include_dirs': [ |
| 387 '..', | 387 '..', |
| 388 ], | 388 ], |
| 389 'sources': [ | 389 'sources': [ |
| 390 'address_sanitizer.cc', | |
|
zra
2015/02/12 23:13:38
I want to put this here to stay in sync with the B
| |
| 390 'gen_snapshot.cc', | 391 'gen_snapshot.cc', |
| 391 # Very limited native resolver provided. | 392 # Very limited native resolver provided. |
| 392 'builtin_gen_snapshot.cc', | 393 'builtin_gen_snapshot.cc', |
| 393 'builtin_common.cc', | 394 'builtin_common.cc', |
| 394 'builtin.cc', | 395 'builtin.cc', |
| 395 'builtin.h', | 396 'builtin.h', |
| 396 'platform_android.cc', | 397 'platform_android.cc', |
| 397 'platform_linux.cc', | 398 'platform_linux.cc', |
| 398 'platform_macos.cc', | 399 'platform_macos.cc', |
| 399 'platform_win.cc', | 400 'platform_win.cc', |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 802 }], | 803 }], |
| 803 ['OS=="linux"', { | 804 ['OS=="linux"', { |
| 804 'cflags': [ | 805 'cflags': [ |
| 805 '-fPIC', | 806 '-fPIC', |
| 806 ], | 807 ], |
| 807 }], | 808 }], |
| 808 ], | 809 ], |
| 809 }, | 810 }, |
| 810 ], | 811 ], |
| 811 } | 812 } |
| OLD | NEW |