| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 'file_util_mac.mm', | 81 'file_util_mac.mm', |
| 82 'file_util_posix.cc', | 82 'file_util_posix.cc', |
| 83 'file_util_win.cc', | 83 'file_util_win.cc', |
| 84 'file_util_proxy.cc', | 84 'file_util_proxy.cc', |
| 85 'file_util_proxy.h', | 85 'file_util_proxy.h', |
| 86 'file_version_info.h', | 86 'file_version_info.h', |
| 87 'file_version_info_mac.h', | 87 'file_version_info_mac.h', |
| 88 'file_version_info_mac.mm', | 88 'file_version_info_mac.mm', |
| 89 'file_version_info_win.cc', | 89 'file_version_info_win.cc', |
| 90 'file_version_info_win.h', | 90 'file_version_info_win.h', |
| 91 'files/file_path_watcher.cc', |
| 92 'files/file_path_watcher.h', |
| 93 'files/file_path_watcher_linux.cc', |
| 94 'files/file_path_watcher_mac.cc', |
| 95 'files/file_path_watcher_win.cc', |
| 91 'fix_wp64.h', | 96 'fix_wp64.h', |
| 92 'float_util.h', | 97 'float_util.h', |
| 93 'foundation_utils_mac.h', | 98 'foundation_utils_mac.h', |
| 94 'global_descriptors_posix.cc', | 99 'global_descriptors_posix.cc', |
| 95 'global_descriptors_posix.h', | 100 'global_descriptors_posix.h', |
| 96 'gtest_prod_util.h', | 101 'gtest_prod_util.h', |
| 97 'hash_tables.h', | 102 'hash_tables.h', |
| 98 'id_map.h', | 103 'id_map.h', |
| 99 'json/json_reader.cc', | 104 'json/json_reader.cc', |
| 100 'json/json_reader.h', | 105 'json/json_reader.h', |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 'event_recorder_stubs.cc', | 399 'event_recorder_stubs.cc', |
| 395 'file_descriptor_shuffle.cc', | 400 'file_descriptor_shuffle.cc', |
| 396 'message_pump_libevent.cc', | 401 'message_pump_libevent.cc', |
| 397 # Not using sha1_win.cc because it may have caused a | 402 # Not using sha1_win.cc because it may have caused a |
| 398 # regression to page cycler moz. | 403 # regression to page cycler moz. |
| 399 'sha1_win.cc', | 404 'sha1_win.cc', |
| 400 'string16.cc', | 405 'string16.cc', |
| 401 'debug/trace_event.cc', | 406 'debug/trace_event.cc', |
| 402 ], | 407 ], |
| 403 },], | 408 },], |
| 409 ['OS=="freebsd" or OS=="openbsd"', { |
| 410 'sources!': [ |
| 411 'base/files/file_path_watcher_linux.cc', |
| 412 ], |
| 413 'sources': [ |
| 414 'base/files/file_path_watcher_stub.cc', |
| 415 ], |
| 416 }], |
| 404 ], | 417 ], |
| 405 }], | 418 }], |
| 406 ], | 419 ], |
| 407 }, | 420 }, |
| 408 'targets': [ | 421 'targets': [ |
| 409 { | 422 { |
| 410 'target_name': 'base', | 423 'target_name': 'base', |
| 411 'type': '<(library)', | 424 'type': '<(library)', |
| 412 'msvs_guid': '1832A374-8A74-4F9E-B536-69A699B3E165', | 425 'msvs_guid': '1832A374-8A74-4F9E-B536-69A699B3E165', |
| 413 'variables': { | 426 'variables': { |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 'third_party/xdg_mime/xdgmimemagic.c', | 770 'third_party/xdg_mime/xdgmimemagic.c', |
| 758 'third_party/xdg_mime/xdgmimemagic.h', | 771 'third_party/xdg_mime/xdgmimemagic.h', |
| 759 'third_party/xdg_mime/xdgmimeparent.c', | 772 'third_party/xdg_mime/xdgmimeparent.c', |
| 760 'third_party/xdg_mime/xdgmimeparent.h', | 773 'third_party/xdg_mime/xdgmimeparent.h', |
| 761 ], | 774 ], |
| 762 }, | 775 }, |
| 763 ], | 776 ], |
| 764 }], | 777 }], |
| 765 ], | 778 ], |
| 766 } | 779 } |
| OLD | NEW |