Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1340)

Side by Side Diff: base/base.gypi

Issue 8393013: rename file_path_watcher_mac to file_path_watcher_kqueue (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | base/files/file_path_watcher_kqueue.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 'file_util_win.cc', 104 'file_util_win.cc',
105 'file_util_proxy.cc', 105 'file_util_proxy.cc',
106 'file_util_proxy.h', 106 'file_util_proxy.h',
107 'file_version_info.h', 107 'file_version_info.h',
108 'file_version_info_mac.h', 108 'file_version_info_mac.h',
109 'file_version_info_mac.mm', 109 'file_version_info_mac.mm',
110 'file_version_info_win.cc', 110 'file_version_info_win.cc',
111 'file_version_info_win.h', 111 'file_version_info_win.h',
112 'files/file_path_watcher.cc', 112 'files/file_path_watcher.cc',
113 'files/file_path_watcher.h', 113 'files/file_path_watcher.h',
114 'files/file_path_watcher_kqueue.cc',
114 'files/file_path_watcher_linux.cc', 115 'files/file_path_watcher_linux.cc',
115 'files/file_path_watcher_mac.cc',
116 'files/file_path_watcher_stub.cc', 116 'files/file_path_watcher_stub.cc',
117 'files/file_path_watcher_win.cc', 117 'files/file_path_watcher_win.cc',
118 'float_util.h', 118 'float_util.h',
119 'format_macros.h', 119 'format_macros.h',
120 'global_descriptors_posix.cc', 120 'global_descriptors_posix.cc',
121 'global_descriptors_posix.h', 121 'global_descriptors_posix.h',
122 'gtest_prod_util.h', 122 'gtest_prod_util.h',
123 'hash_tables.h', 123 'hash_tables.h',
124 'id_map.h', 124 'id_map.h',
125 'json/json_reader.cc', 125 'json/json_reader.cc',
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 'sources/': [ ['exclude', '^android/'] ], 474 'sources/': [ ['exclude', '^android/'] ],
475 }, 475 },
476 ], 476 ],
477 [ 'OS == "win"', { 477 [ 'OS == "win"', {
478 'include_dirs': [ 478 'include_dirs': [
479 '<(DEPTH)/third_party/wtl/include', 479 '<(DEPTH)/third_party/wtl/include',
480 ], 480 ],
481 'sources!': [ 481 'sources!': [
482 'event_recorder_stubs.cc', 482 'event_recorder_stubs.cc',
483 'file_descriptor_shuffle.cc', 483 'file_descriptor_shuffle.cc',
484 'files/file_path_watcher_kqueue.cc',
484 'files/file_path_watcher_stub.cc', 485 'files/file_path_watcher_stub.cc',
485 'message_pump_libevent.cc', 486 'message_pump_libevent.cc',
486 # Not using sha1_win.cc because it may have caused a 487 # Not using sha1_win.cc because it may have caused a
487 # regression to page cycler moz. 488 # regression to page cycler moz.
488 'sha1_win.cc', 489 'sha1_win.cc',
489 'string16.cc', 490 'string16.cc',
490 ], 491 ],
491 },], 492 },],
492 [ 'OS == "linux"', { 493 [ 'OS == "linux"', {
493 'sources!': [ 494 'sources!': [
495 'files/file_path_watcher_kqueue.cc',
494 'files/file_path_watcher_stub.cc', 496 'files/file_path_watcher_stub.cc',
495 ], 497 ],
496 }], 498 }],
497 [ 'OS == "mac"', { 499 [ 'OS == "mac"', {
498 'sources!': [ 500 'sources!': [
499 'files/file_path_watcher_stub.cc', 501 'files/file_path_watcher_stub.cc',
500 ], 502 ],
501 }], 503 }],
502 [ 'OS == "openbsd"', { 504 [ 'OS == "openbsd"', {
503 'sources/': [ 505 'sources/': [
504 ['exclude', '^files/file_path_watcher_linux\\.cc$'], 506 ['exclude', '^files/file_path_watcher_linux\\.cc$'],
507 ['exclude', '^files/file_path_watcher_stub\\.cc$'],
505 ['exclude', '^file_util_linux\\.cc$'], 508 ['exclude', '^file_util_linux\\.cc$'],
506 ['exclude', '^process_linux\\.cc$'], 509 ['exclude', '^process_linux\\.cc$'],
507 ['exclude', '^process_util_linux\\.cc$'], 510 ['exclude', '^process_util_linux\\.cc$'],
508 ['exclude', '^sys_info_linux\\.cc$'], 511 ['exclude', '^sys_info_linux\\.cc$'],
509 ], 512 ],
510 }], 513 }],
511 ], 514 ],
512 }], 515 }],
513 ], 516 ],
514 }, 517 },
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
818 'third_party/xdg_mime/xdgmimemagic.c', 821 'third_party/xdg_mime/xdgmimemagic.c',
819 'third_party/xdg_mime/xdgmimemagic.h', 822 'third_party/xdg_mime/xdgmimemagic.h',
820 'third_party/xdg_mime/xdgmimeparent.c', 823 'third_party/xdg_mime/xdgmimeparent.c',
821 'third_party/xdg_mime/xdgmimeparent.h', 824 'third_party/xdg_mime/xdgmimeparent.h',
822 ], 825 ],
823 }, 826 },
824 ], 827 ],
825 }], 828 }],
826 ], 829 ],
827 } 830 }
OLDNEW
« no previous file with comments | « no previous file | base/files/file_path_watcher_kqueue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698