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

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

Issue 11312242: Revised CL for customisable logging (replacing printfs). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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 | runtime/bin/dbg_connection.cc » ('j') | runtime/bin/directory_win.cc » ('J')
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 'crypto_cc_file': '<(SHARED_INTERMEDIATE_DIR)/crypto_gen.cc', 7 'crypto_cc_file': '<(SHARED_INTERMEDIATE_DIR)/crypto_gen.cc',
8 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', 8 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc',
9 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', 9 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc',
10 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', 10 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc',
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 'generate_uri_cc_file', 261 'generate_uri_cc_file',
262 'generate_utf_cc_file', 262 'generate_utf_cc_file',
263 ], 263 ],
264 'include_dirs': [ 264 'include_dirs': [
265 '..', 265 '..',
266 ], 266 ],
267 'sources': [ 267 'sources': [
268 'builtin_natives.cc', 268 'builtin_natives.cc',
269 'builtin.h', 269 'builtin.h',
270 'io_natives.h', 270 'io_natives.h',
271 'log_android.cc',
272 'log_linux.cc',
273 'log_macos.cc',
274 'log_win.cc',
271 ], 275 ],
272 'includes': [ 276 'includes': [
273 'builtin_impl_sources.gypi', 277 'builtin_impl_sources.gypi',
274 '../platform/platform_sources.gypi', 278 '../platform/platform_sources.gypi',
275 ], 279 ],
276 'sources/': [ 280 'sources/': [
277 ['exclude', '_test\\.(cc|h)$'], 281 ['exclude', '_test\\.(cc|h)$'],
278 ], 282 ],
279 'conditions': [ 283 'conditions': [
280 ['OS=="win"', { 284 ['OS=="win"', {
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 '<(io_patch_cc_file)', 388 '<(io_patch_cc_file)',
385 '<(json_cc_file)', 389 '<(json_cc_file)',
386 '<(uri_cc_file)', 390 '<(uri_cc_file)',
387 '<(utf_cc_file)', 391 '<(utf_cc_file)',
388 ], 392 ],
389 'conditions': [ 393 'conditions': [
390 ['OS=="win"', { 394 ['OS=="win"', {
391 'link_settings': { 395 'link_settings': {
392 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], 396 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ],
393 }, 397 },
394 }]], 398 }],
399 ['OS=="android"', {
400 'link_settings': {
401 'libraries': [ '-llog' ],
402 },
403 }]
404 ],
395 }, 405 },
396 { 406 {
397 # Generate snapshot bin file. 407 # Generate snapshot bin file.
398 'target_name': 'generate_snapshot_bin', 408 'target_name': 'generate_snapshot_bin',
399 'type': 'none', 409 'type': 'none',
400 'dependencies': [ 410 'dependencies': [
401 'gen_snapshot', 411 'gen_snapshot',
402 ], 412 ],
403 'actions': [ 413 'actions': [
404 { 414 {
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 ['OS=="mac"', { 618 ['OS=="mac"', {
609 'xcode_settings': { 619 'xcode_settings': {
610 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], 620 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ],
611 }, 621 },
612 }], 622 }],
613 ], 623 ],
614 }, 624 },
615 ], 625 ],
616 } 626 }
617 627
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/dbg_connection.cc » ('j') | runtime/bin/directory_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698