| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../build/common.gypi', | 10 '../build/common.gypi', |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 '<(SHARED_INTERMEDIATE_DIR)', | 411 '<(SHARED_INTERMEDIATE_DIR)', |
| 412 ], | 412 ], |
| 413 'sources/': [ ['exclude', '_(mac|win)\\.cc$'], | 413 'sources/': [ ['exclude', '_(mac|win)\\.cc$'], |
| 414 ['exclude', '\\.mm?$' ] ], | 414 ['exclude', '\\.mm?$' ] ], |
| 415 'sources!': [ | 415 'sources!': [ |
| 416 # Linux has an implementation of idle_timer that depends | 416 # Linux has an implementation of idle_timer that depends |
| 417 # on XScreenSaver, but it's unclear if we want it yet, | 417 # on XScreenSaver, but it's unclear if we want it yet, |
| 418 # so use idle_timer_none.cc instead. | 418 # so use idle_timer_none.cc instead. |
| 419 'idle_timer.cc', | 419 'idle_timer.cc', |
| 420 ], | 420 ], |
| 421 'sources': [ |
| 422 'zygote_manager.cc', |
| 423 ], |
| 421 'dependencies': [ | 424 'dependencies': [ |
| 422 '../build/linux/system.gyp:gtk', | 425 '../build/linux/system.gyp:gtk', |
| 423 '../build/linux/system.gyp:nss', | 426 '../build/linux/system.gyp:nss', |
| 424 ], | 427 ], |
| 425 'cflags': [ | 428 'cflags': [ |
| 426 '-Wno-write-strings', | 429 '-Wno-write-strings', |
| 427 ], | 430 ], |
| 428 'link_settings': { | 431 'link_settings': { |
| 429 'libraries': [ | 432 'libraries': [ |
| 430 # We need rt for clock_gettime(). | 433 # We need rt for clock_gettime(). |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 672 ], | 675 ], |
| 673 'dependencies': [ | 676 'dependencies': [ |
| 674 'base', | 677 'base', |
| 675 'base_gfx', | 678 'base_gfx', |
| 676 '../skia/skia.gyp:skia', | 679 '../skia/skia.gyp:skia', |
| 677 '../testing/gmock.gyp:gmock', | 680 '../testing/gmock.gyp:gmock', |
| 678 '../testing/gtest.gyp:gtest', | 681 '../testing/gtest.gyp:gtest', |
| 679 ], | 682 ], |
| 680 'conditions': [ | 683 'conditions': [ |
| 681 ['OS == "linux"', { | 684 ['OS == "linux"', { |
| 685 'sources': [ |
| 686 'zygote_manager_unittest.cc', |
| 687 ], |
| 682 'sources!': [ | 688 'sources!': [ |
| 683 'file_version_info_unittest.cc', | 689 'file_version_info_unittest.cc', |
| 684 # Linux has an implementation of idle_timer, but it's unclear | 690 # Linux has an implementation of idle_timer, but it's unclear |
| 685 # if we want it yet, so leave it 'unported' for now. | 691 # if we want it yet, so leave it 'unported' for now. |
| 686 'idletimer_unittest.cc', | 692 'idletimer_unittest.cc', |
| 687 'worker_pool_linux_unittest.cc', | 693 'worker_pool_linux_unittest.cc', |
| 688 ], | 694 ], |
| 689 'dependencies': [ | 695 'dependencies': [ |
| 690 '../build/linux/system.gyp:gtk', | 696 '../build/linux/system.gyp:gtk', |
| 691 '../build/linux/system.gyp:nss', | 697 '../build/linux/system.gyp:nss', |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 763 'msvs_settings': { | 769 'msvs_settings': { |
| 764 'VCLinkerTool': { | 770 'VCLinkerTool': { |
| 765 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 771 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 766 }, | 772 }, |
| 767 }, | 773 }, |
| 768 }, | 774 }, |
| 769 ], | 775 ], |
| 770 }], | 776 }], |
| 771 ], | 777 ], |
| 772 } | 778 } |
| OLD | NEW |