Chromium Code Reviews| 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 296 'watchdog.h', | 296 'watchdog.h', |
| 297 'win_util.cc', | 297 'win_util.cc', |
| 298 'win_util.h', | 298 'win_util.h', |
| 299 'windows_message_list.h', | 299 'windows_message_list.h', |
| 300 'wmi_util.cc', | 300 'wmi_util.cc', |
| 301 'wmi_util.h', | 301 'wmi_util.h', |
| 302 'word_iterator.cc', | 302 'word_iterator.cc', |
| 303 'word_iterator.h', | 303 'word_iterator.h', |
| 304 'worker_pool.h', | 304 'worker_pool.h', |
| 305 'worker_pool_linux.cc', | 305 'worker_pool_linux.cc', |
| 306 'worker_pool_linux.h', | |
| 306 'worker_pool_mac.mm', | 307 'worker_pool_mac.mm', |
| 307 'worker_pool_win.cc', | 308 'worker_pool_win.cc', |
| 308 ], | 309 ], |
| 309 'include_dirs': [ | 310 'include_dirs': [ |
| 310 '..', | 311 '..', |
| 311 ], | 312 ], |
| 312 'direct_dependent_settings': { | 313 'direct_dependent_settings': { |
| 313 'include_dirs': [ | 314 'include_dirs': [ |
| 314 '..', | 315 '..', |
| 315 ], | 316 ], |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 560 '../skia/skia.gyp:skia', | 561 '../skia/skia.gyp:skia', |
| 561 '../testing/gtest.gyp:gtest', | 562 '../testing/gtest.gyp:gtest', |
| 562 ], | 563 ], |
| 563 'conditions': [ | 564 'conditions': [ |
| 564 ['OS == "linux"', { | 565 ['OS == "linux"', { |
| 565 'sources!': [ | 566 'sources!': [ |
| 566 'file_version_info_unittest.cc', | 567 'file_version_info_unittest.cc', |
| 567 # Linux has an implementation of idle_timer, but it's unclear | 568 # Linux has an implementation of idle_timer, but it's unclear |
| 568 # if we want it yet, so leave it 'unported' for now. | 569 # if we want it yet, so leave it 'unported' for now. |
| 569 'idletimer_unittest.cc', | 570 'idletimer_unittest.cc', |
| 571 'worker_pool_linux_unittest.cc', | |
|
Nico
2010/12/18 08:50:38
did you intentionally add this to the "sources!" s
| |
| 570 ], | 572 ], |
| 571 'dependencies': [ | 573 'dependencies': [ |
| 572 '../build/linux/system.gyp:gtk', | 574 '../build/linux/system.gyp:gtk', |
| 573 ], | 575 ], |
| 574 }], | 576 }], |
| 575 ['OS != "mac"', { | 577 ['OS != "mac"', { |
| 576 'sources!': [ | 578 'sources!': [ |
| 577 'mac_util_unittest.cc', | 579 'mac_util_unittest.cc', |
| 578 ], | 580 ], |
| 579 }], | 581 }], |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 639 'target_name': 'debug_message', | 641 'target_name': 'debug_message', |
| 640 'type': 'executable', | 642 'type': 'executable', |
| 641 'sources': [ | 643 'sources': [ |
| 642 'debug_message.cc', | 644 'debug_message.cc', |
| 643 ], | 645 ], |
| 644 }, | 646 }, |
| 645 ], | 647 ], |
| 646 }], | 648 }], |
| 647 ], | 649 ], |
| 648 } | 650 } |
| OLD | NEW |