| 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 'LINUX_USE_TCMALLOC', | 373 'LINUX_USE_TCMALLOC', |
| 374 ], | 374 ], |
| 375 }, | 375 }, |
| 376 }, | 376 }, |
| 377 ], | 377 ], |
| 378 [ 'OS == "linux"', { | 378 [ 'OS == "linux"', { |
| 379 'link_settings': { | 379 'link_settings': { |
| 380 'libraries': [ | 380 'libraries': [ |
| 381 # We need rt for clock_gettime(). | 381 # We need rt for clock_gettime(). |
| 382 '-lrt', | 382 '-lrt', |
| 383 # For 'native_library_linux.cc' |
| 384 '-ldl', |
| 383 ], | 385 ], |
| 384 }, | 386 }, |
| 385 }], | 387 }], |
| 386 ], | 388 ], |
| 387 'dependencies': [ | 389 'dependencies': [ |
| 388 '../build/util/build_util.gyp:lastchange', | 390 '../build/util/build_util.gyp:lastchange', |
| 389 '../build/linux/system.gyp:gtk', | 391 '../build/linux/system.gyp:gtk', |
| 390 '../build/linux/system.gyp:nss', | 392 '../build/linux/system.gyp:nss', |
| 391 'symbolize', | 393 'symbolize', |
| 392 'xdg_mime', | 394 'xdg_mime', |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 'third_party/xdg_mime/xdgmimemagic.c', | 622 'third_party/xdg_mime/xdgmimemagic.c', |
| 621 'third_party/xdg_mime/xdgmimemagic.h', | 623 'third_party/xdg_mime/xdgmimemagic.h', |
| 622 'third_party/xdg_mime/xdgmimeparent.c', | 624 'third_party/xdg_mime/xdgmimeparent.c', |
| 623 'third_party/xdg_mime/xdgmimeparent.h', | 625 'third_party/xdg_mime/xdgmimeparent.h', |
| 624 ], | 626 ], |
| 625 }, | 627 }, |
| 626 ], | 628 ], |
| 627 }], | 629 }], |
| 628 ], | 630 ], |
| 629 } | 631 } |
| OLD | NEW |