| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 'data_pack.cc', | 81 'data_pack.cc', |
| 82 'debug_on_start.cc', | 82 'debug_on_start.cc', |
| 83 'debug_on_start.h', | 83 'debug_on_start.h', |
| 84 'debug_util.cc', | 84 'debug_util.cc', |
| 85 'debug_util.h', | 85 'debug_util.h', |
| 86 'debug_util_mac.cc', | 86 'debug_util_mac.cc', |
| 87 'debug_util_posix.cc', | 87 'debug_util_posix.cc', |
| 88 'debug_util_win.cc', | 88 'debug_util_win.cc', |
| 89 'directory_watcher.h', | 89 'directory_watcher.h', |
| 90 'directory_watcher_inotify.cc', | 90 'directory_watcher_inotify.cc', |
| 91 'directory_watcher_mac.cc', |
| 91 'directory_watcher_win.cc', | 92 'directory_watcher_win.cc', |
| 92 'event_recorder.cc', | 93 'event_recorder.cc', |
| 93 'event_recorder.h', | 94 'event_recorder.h', |
| 94 'event_recorder_stubs.cc', | 95 'event_recorder_stubs.cc', |
| 95 'field_trial.cc', | 96 'field_trial.cc', |
| 96 'field_trial.h', | 97 'field_trial.h', |
| 97 'file_path.cc', | 98 'file_path.cc', |
| 98 'file_path.h', | 99 'file_path.h', |
| 99 'file_util.cc', | 100 'file_util.cc', |
| 100 'file_util.h', | 101 'file_util.h', |
| (...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 # Linux has an implementation of idle_timer, but it's unclear | 635 # Linux has an implementation of idle_timer, but it's unclear |
| 635 # if we want it yet, so leave it 'unported' for now. | 636 # if we want it yet, so leave it 'unported' for now. |
| 636 'idletimer_unittest.cc', | 637 'idletimer_unittest.cc', |
| 637 'worker_pool_linux_unittest.cc', | 638 'worker_pool_linux_unittest.cc', |
| 638 ], | 639 ], |
| 639 'dependencies': [ | 640 'dependencies': [ |
| 640 '../build/linux/system.gyp:gtk', | 641 '../build/linux/system.gyp:gtk', |
| 641 '../build/linux/system.gyp:nss', | 642 '../build/linux/system.gyp:nss', |
| 642 ], | 643 ], |
| 643 }], | 644 }], |
| 644 ['OS == "mac"', { | 645 ['OS != "mac"', { |
| 645 'sources!': [ | |
| 646 'directory_watcher_unittest.cc', | |
| 647 ], | |
| 648 }, { # OS != "mac" | |
| 649 'sources!': [ | 646 'sources!': [ |
| 650 'mac_util_unittest.cc', | 647 'mac_util_unittest.cc', |
| 651 ], | 648 ], |
| 652 }], | 649 }], |
| 653 # This is needed to trigger the dll copy step on windows. | 650 # This is needed to trigger the dll copy step on windows. |
| 654 # TODO(mark): This should not be necessary. | 651 # TODO(mark): This should not be necessary. |
| 655 ['OS == "win"', { | 652 ['OS == "win"', { |
| 656 'dependencies': [ | 653 'dependencies': [ |
| 657 '../third_party/icu38/icu38.gyp:icudata', | 654 '../third_party/icu38/icu38.gyp:icudata', |
| 658 ], | 655 ], |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 'target_name': 'debug_message', | 708 'target_name': 'debug_message', |
| 712 'type': 'executable', | 709 'type': 'executable', |
| 713 'sources': [ | 710 'sources': [ |
| 714 'debug_message.cc', | 711 'debug_message.cc', |
| 715 ], | 712 ], |
| 716 }, | 713 }, |
| 717 ], | 714 ], |
| 718 }], | 715 }], |
| 719 ], | 716 ], |
| 720 } | 717 } |
| OLD | NEW |