OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'base_target': 0, | 8 'base_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 ], | 359 ], |
360 }, | 360 }, |
361 # Conditions that are not relevant for Win64 build | 361 # Conditions that are not relevant for Win64 build |
362 'conditions': [ | 362 'conditions': [ |
363 [ 'OS == "linux" or OS == "freebsd"', { | 363 [ 'OS == "linux" or OS == "freebsd"', { |
364 'conditions': [ | 364 'conditions': [ |
365 [ 'chromeos==1', { | 365 [ 'chromeos==1', { |
366 'sources/': [ ['include', '_chromeos\\.cc$'] ] | 366 'sources/': [ ['include', '_chromeos\\.cc$'] ] |
367 }, | 367 }, |
368 ], | 368 ], |
369 [ 'linux_use_tcmalloc==1', { | 369 [ 'linux_use_tcmalloc==0', { |
370 'defines': [ | 370 'defines': [ |
371 'LINUX_USE_TCMALLOC', | 371 'NO_TCMALLOC', |
372 ], | 372 ], |
373 'direct_dependent_settings': { | 373 'direct_dependent_settings': { |
374 'defines': [ | 374 'defines': [ |
375 'LINUX_USE_TCMALLOC', | 375 'NO_TCMALLOC', |
376 ], | 376 ], |
377 }, | 377 }, |
378 }, | 378 }, |
379 ], | 379 ], |
380 [ 'OS == "linux"', { | 380 [ 'OS == "linux"', { |
381 'link_settings': { | 381 'link_settings': { |
382 'libraries': [ | 382 'libraries': [ |
383 # We need rt for clock_gettime(). | 383 # We need rt for clock_gettime(). |
384 '-lrt', | 384 '-lrt', |
385 # For 'native_library_linux.cc' | 385 # For 'native_library_linux.cc' |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
624 'third_party/xdg_mime/xdgmimemagic.c', | 624 'third_party/xdg_mime/xdgmimemagic.c', |
625 'third_party/xdg_mime/xdgmimemagic.h', | 625 'third_party/xdg_mime/xdgmimemagic.h', |
626 'third_party/xdg_mime/xdgmimeparent.c', | 626 'third_party/xdg_mime/xdgmimeparent.c', |
627 'third_party/xdg_mime/xdgmimeparent.h', | 627 'third_party/xdg_mime/xdgmimeparent.h', |
628 ], | 628 ], |
629 }, | 629 }, |
630 ], | 630 ], |
631 }], | 631 }], |
632 ], | 632 ], |
633 } | 633 } |
OLD | NEW |