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

Side by Side Diff: base/base.gypi

Issue 7231016: Move app/win/* files to base/win/, ui/base/win and chrome/common/ directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: brettw review Created 9 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « app/win/shell.cc ('k') | base/win/iat_patch_function.h » ('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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 'utf_string_conversions.cc', 314 'utf_string_conversions.cc',
315 'utf_string_conversions.h', 315 'utf_string_conversions.h',
316 'values.cc', 316 'values.cc',
317 'values.h', 317 'values.h',
318 'value_conversions.cc', 318 'value_conversions.cc',
319 'value_conversions.h', 319 'value_conversions.h',
320 'version.cc', 320 'version.cc',
321 'version.h', 321 'version.h',
322 'vlog.cc', 322 'vlog.cc',
323 'vlog.h', 323 'vlog.h',
324 'nix/xdg_util.cc',
325 'nix/xdg_util.h',
324 'win/event_trace_consumer.h', 326 'win/event_trace_consumer.h',
325 'win/event_trace_controller.cc', 327 'win/event_trace_controller.cc',
326 'win/event_trace_controller.h', 328 'win/event_trace_controller.h',
327 'win/event_trace_provider.cc', 329 'win/event_trace_provider.cc',
328 'win/event_trace_provider.h', 330 'win/event_trace_provider.h',
329 'win/i18n.cc', 331 'win/i18n.cc',
330 'win/i18n.h', 332 'win/i18n.h',
333 'win/iat_patch_function.cc',
334 'win/iat_patch_function.h',
331 'win/object_watcher.cc', 335 'win/object_watcher.cc',
332 'win/object_watcher.h', 336 'win/object_watcher.h',
333 'win/registry.cc', 337 'win/registry.cc',
334 'win/registry.h', 338 'win/registry.h',
335 'win/scoped_bstr.cc', 339 'win/scoped_bstr.cc',
336 'win/scoped_bstr.h', 340 'win/scoped_bstr.h',
341 'win/scoped_com_initializer.h',
337 'win/scoped_comptr.h', 342 'win/scoped_comptr.h',
338 'win/scoped_gdi_object.h', 343 'win/scoped_gdi_object.h',
339 'win/scoped_handle.h', 344 'win/scoped_handle.h',
340 'win/scoped_hdc.h', 345 'win/scoped_hdc.h',
341 'win/scoped_hglobal.h', 346 'win/scoped_hglobal.h',
342 'win/scoped_variant.cc', 347 'win/scoped_variant.cc',
343 'win/scoped_variant.h', 348 'win/scoped_variant.h',
349 'win/windows_version.cc',
350 'win/windows_version.h',
344 'win/win_util.cc', 351 'win/win_util.cc',
345 'win/win_util.h', 352 'win/win_util.h',
346 'win/windows_version.cc',
347 'win/windows_version.h',
348 'win/wrapped_window_proc.cc', 353 'win/wrapped_window_proc.cc',
349 'win/wrapped_window_proc.h', 354 'win/wrapped_window_proc.h',
350 'nix/xdg_util.h',
351 'nix/xdg_util.cc',
352 ], 355 ],
353 'include_dirs': [ 356 'include_dirs': [
354 '..', 357 '..',
355 ], 358 ],
356 # These warnings are needed for the files in third_party\dmg_fp. 359 # These warnings are needed for the files in third_party\dmg_fp.
357 'msvs_disabled_warnings': [ 360 'msvs_disabled_warnings': [
358 4244, 4554, 4018, 4102, 361 4244, 4554, 4018, 4102,
359 ], 362 ],
360 'mac_framework_dirs': [ 363 'mac_framework_dirs': [
361 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fr ameworks', 364 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fr ameworks',
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 'third_party/xdg_mime/xdgmimemagic.c', 679 'third_party/xdg_mime/xdgmimemagic.c',
677 'third_party/xdg_mime/xdgmimemagic.h', 680 'third_party/xdg_mime/xdgmimemagic.h',
678 'third_party/xdg_mime/xdgmimeparent.c', 681 'third_party/xdg_mime/xdgmimeparent.c',
679 'third_party/xdg_mime/xdgmimeparent.h', 682 'third_party/xdg_mime/xdgmimeparent.h',
680 ], 683 ],
681 }, 684 },
682 ], 685 ],
683 }], 686 }],
684 ], 687 ],
685 } 688 }
OLDNEW
« no previous file with comments | « app/win/shell.cc ('k') | base/win/iat_patch_function.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698