| 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 'chrome_common_target': 0, | 8 'chrome_common_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 'common/worker_messages.h', | 377 'common/worker_messages.h', |
| 378 'common/worker_messages_internal.h', | 378 'common/worker_messages_internal.h', |
| 379 'common/worker_thread_ticker.cc', | 379 'common/worker_thread_ticker.cc', |
| 380 'common/worker_thread_ticker.h', | 380 'common/worker_thread_ticker.h', |
| 381 'common/zip.cc', # Requires zlib directly. | 381 'common/zip.cc', # Requires zlib directly. |
| 382 'common/zip.h', | 382 'common/zip.h', |
| 383 ], | 383 ], |
| 384 'conditions': [ | 384 'conditions': [ |
| 385 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 385 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
| 386 'dependencies': [ | 386 'dependencies': [ |
| 387 '../build/linux/system.gyp:dbus-glib', |
| 387 '../build/linux/system.gyp:gtk', | 388 '../build/linux/system.gyp:gtk', |
| 388 ], | 389 ], |
| 389 'export_dependent_settings': [ | 390 'export_dependent_settings': [ |
| 390 '../third_party/sqlite/sqlite.gyp:sqlite', | 391 '../third_party/sqlite/sqlite.gyp:sqlite', |
| 391 ], | 392 ], |
| 392 'link_settings': { | 393 'link_settings': { |
| 393 'libraries': [ | 394 'libraries': [ |
| 394 '-lX11', | 395 '-lX11', |
| 395 '-lXrender', | 396 '-lXrender', |
| 396 '-lXss', | 397 '-lXss', |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 614 'configurations': { | 615 'configurations': { |
| 615 'Common_Base': { | 616 'Common_Base': { |
| 616 'msvs_target_platform': 'x64', | 617 'msvs_target_platform': 'x64', |
| 617 }, | 618 }, |
| 618 }, | 619 }, |
| 619 }, | 620 }, |
| 620 ], | 621 ], |
| 621 }], | 622 }], |
| 622 ], | 623 ], |
| 623 } | 624 } |
| OLD | NEW |