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

Side by Side Diff: base/base.gypi

Issue 1701005: bsd: refactor XDG bits of linux_util into a shared file. (Closed)
Patch Set: Created 10 years, 8 months 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
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 'memory_debug.cc', 116 'memory_debug.cc',
117 'memory_debug.h', 117 'memory_debug.h',
118 'message_loop.cc', 118 'message_loop.cc',
119 'message_loop.h', 119 'message_loop.h',
120 'message_pump.h', 120 'message_pump.h',
121 'message_pump_default.cc', 121 'message_pump_default.cc',
122 'message_pump_default.h', 122 'message_pump_default.h',
123 'message_pump_win.cc', 123 'message_pump_win.cc',
124 'message_pump_win.h', 124 'message_pump_win.h',
125 'mime_util.h', 125 'mime_util.h',
126 'mime_util_linux.cc', 126 'mime_util_xdg.cc',
127 'move.h', 127 'move.h',
128 'native_library.h', 128 'native_library.h',
129 'native_library_linux.cc', 129 'native_library_linux.cc',
130 'native_library_mac.mm', 130 'native_library_mac.mm',
131 'native_library_win.cc', 131 'native_library_win.cc',
132 'non_thread_safe.cc', 132 'non_thread_safe.cc',
133 'non_thread_safe.h', 133 'non_thread_safe.h',
134 'nullable_string16.h', 134 'nullable_string16.h',
135 'object_watcher.cc', 135 'object_watcher.cc',
136 'object_watcher.h', 136 'object_watcher.h',
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 'win_util.h', 272 'win_util.h',
273 'windows_message_list.h', 273 'windows_message_list.h',
274 'wmi_util.cc', 274 'wmi_util.cc',
275 'wmi_util.h', 275 'wmi_util.h',
276 'worker_pool.h', 276 'worker_pool.h',
277 'worker_pool_linux.cc', 277 'worker_pool_linux.cc',
278 'worker_pool_linux.h', 278 'worker_pool_linux.h',
279 'worker_pool_mac.h', 279 'worker_pool_mac.h',
280 'worker_pool_mac.mm', 280 'worker_pool_mac.mm',
281 'worker_pool_win.cc', 281 'worker_pool_win.cc',
282 'xdg_util.h',
283 'xdg_util.cc',
282 ], 284 ],
283 'include_dirs': [ 285 'include_dirs': [
284 '..', 286 '..',
285 ], 287 ],
286 # These warnings are needed for the files in third_party\dmg_fp. 288 # These warnings are needed for the files in third_party\dmg_fp.
287 'msvs_disabled_warnings': [ 289 'msvs_disabled_warnings': [
288 4244, 4554, 4018, 4102, 290 4244, 4554, 4018, 4102,
289 ], 291 ],
290 'mac_framework_dirs': [ 292 'mac_framework_dirs': [
291 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fr ameworks', 293 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fr ameworks',
292 ], 294 ],
293 'conditions': [ 295 'conditions': [
294 [ 'OS != "linux" and OS != "freebsd" and OS != "openbsd" and OS != "so laris"', { 296 [ 'OS != "linux" and OS != "freebsd" and OS != "openbsd" and OS != "so laris"', {
295 'sources/': [ 297 'sources/': [
296 ['exclude', '/xdg_user_dirs/'], 298 ['exclude', '/xdg_user_dirs/'],
299 ['exclude', '/xdg_[^/]*\\.cc$'],
297 ['exclude', '_nss\.cc$'], 300 ['exclude', '_nss\.cc$'],
298 ], 301 ],
299 'sources!': [ 302 'sources!': [
300 'atomicops_internals_x86_gcc.cc', 303 'atomicops_internals_x86_gcc.cc',
301 'base_paths_posix.cc', 304 'base_paths_posix.cc',
302 'linux_util.cc', 305 'linux_util.cc',
303 'message_pump_glib.cc', 306 'message_pump_glib.cc',
304 ], 307 ],
305 }], 308 }],
306 [ 'OS != "linux"', { 309 [ 'OS != "linux"', {
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 'third_party/xdg_mime/xdgmimemagic.c', 650 'third_party/xdg_mime/xdgmimemagic.c',
648 'third_party/xdg_mime/xdgmimemagic.h', 651 'third_party/xdg_mime/xdgmimemagic.h',
649 'third_party/xdg_mime/xdgmimeparent.c', 652 'third_party/xdg_mime/xdgmimeparent.c',
650 'third_party/xdg_mime/xdgmimeparent.h', 653 'third_party/xdg_mime/xdgmimeparent.h',
651 ], 654 ],
652 }, 655 },
653 ], 656 ],
654 }], 657 }],
655 ], 658 ],
656 } 659 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698