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

Side by Side Diff: views/views.gyp

Issue 7886042: Move Aura to UI subdir. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 3 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
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'target_defaults': { 10 'target_defaults': {
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 ['exclude', 'touchui/touch_factory.cc'], 412 ['exclude', 'touchui/touch_factory.cc'],
413 ['exclude', 'touchui/touch_factory.h'], 413 ['exclude', 'touchui/touch_factory.h'],
414 ['include', 'controls/menu/native_menu_linux.cc'], 414 ['include', 'controls/menu/native_menu_linux.cc'],
415 ['include', 'controls/menu/native_menu_linux.h'], 415 ['include', 'controls/menu/native_menu_linux.h'],
416 ['include', 'drag_utils_gtk.cc'], 416 ['include', 'drag_utils_gtk.cc'],
417 ['include', 'widget/tooltip_manager_views.cc'], 417 ['include', 'widget/tooltip_manager_views.cc'],
418 ], 418 ],
419 }], 419 }],
420 ['use_aura==1', { 420 ['use_aura==1', {
421 'dependencies': [ 421 'dependencies': [
422 '../aura/aura.gyp:aura', 422 '../ui/aura/aura.gyp:aura',
423 ], 423 ],
424 'sources/': [ 424 'sources/': [
425 ['exclude', '_(gtk|x)\\.cc$'], 425 ['exclude', '_(gtk|x)\\.cc$'],
426 ['exclude', '/(gtk|x)_[^/]*\\.cc$'], 426 ['exclude', '/(gtk|x)_[^/]*\\.cc$'],
427 ], 427 ],
428 'sources!': [ 428 'sources!': [
429 'controls/native_control.cc', 429 'controls/native_control.cc',
430 'controls/native_control.h', 430 'controls/native_control.h',
431 'controls/scrollbar/bitmap_scroll_bar.cc', 431 'controls/scrollbar/bitmap_scroll_bar.cc',
432 'controls/scrollbar/bitmap_scroll_bar.h', 432 'controls/scrollbar/bitmap_scroll_bar.h',
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
846 ], 846 ],
847 }, 847 },
848 ], 848 ],
849 'conditions': [ 849 'conditions': [
850 ['use_aura==1', { 850 ['use_aura==1', {
851 'targets': [ 851 'targets': [
852 { 852 {
853 'target_name': 'views_aura_desktop', 853 'target_name': 'views_aura_desktop',
854 'type': 'executable', 854 'type': 'executable',
855 'dependencies': [ 855 'dependencies': [
856 '../aura/aura.gyp:aura',
857 '../base/base.gyp:base', 856 '../base/base.gyp:base',
858 '../base/base.gyp:base_i18n', 857 '../base/base.gyp:base_i18n',
859 '../chrome/chrome.gyp:packed_resources', 858 '../chrome/chrome.gyp:packed_resources',
860 '../skia/skia.gyp:skia', 859 '../skia/skia.gyp:skia',
861 '../third_party/icu/icu.gyp:icui18n', 860 '../third_party/icu/icu.gyp:icui18n',
862 '../third_party/icu/icu.gyp:icuuc', 861 '../third_party/icu/icu.gyp:icuuc',
862 '../ui/aura/aura.gyp:aura',
863 '../ui/ui.gyp:gfx_resources', 863 '../ui/ui.gyp:gfx_resources',
864 '../ui/ui.gyp:ui', 864 '../ui/ui.gyp:ui',
865 '../ui/ui.gyp:ui_resources', 865 '../ui/ui.gyp:ui_resources',
866 '../ui/ui.gyp:ui_resources_standard', 866 '../ui/ui.gyp:ui_resources_standard',
867 'views', 867 'views',
868 ], 868 ],
869 'include_dirs': [ 869 'include_dirs': [
870 '..', 870 '..',
871 ], 871 ],
872 'sources': [ 872 'sources': [
(...skipping 13 matching lines...) Expand all
886 'include_dirs': [ 886 'include_dirs': [
887 '<(DEPTH)/third_party/wtl/include', 887 '<(DEPTH)/third_party/wtl/include',
888 ], 888 ],
889 }], 889 }],
890 ], 890 ],
891 }, 891 },
892 ], 892 ],
893 }], 893 }],
894 ], 894 ],
895 } 895 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698