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

Side by Side Diff: ui/aura/aura.gyp

Issue 8555025: aura: Draw drop shadows under browsers and menus. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 22 matching lines...) Expand all
33 'desktop_host_linux.cc', 33 'desktop_host_linux.cc',
34 'desktop_host_win.cc', 34 'desktop_host_win.cc',
35 'desktop_host_win.h', 35 'desktop_host_win.h',
36 'desktop.cc', 36 'desktop.cc',
37 'desktop.h', 37 'desktop.h',
38 'event.cc', 38 'event.cc',
39 'event.h', 39 'event.h',
40 'event_filter.cc', 40 'event_filter.cc',
41 'event_filter.h', 41 'event_filter.h',
42 'focus_manager.h', 42 'focus_manager.h',
43 'image_grid.cc',
44 'image_grid.h',
43 'layout_manager.cc', 45 'layout_manager.cc',
44 'layout_manager.h', 46 'layout_manager.h',
45 'screen_aura.cc', 47 'screen_aura.cc',
46 'screen_aura.h', 48 'screen_aura.h',
49 'shadow.cc',
50 'shadow.h',
47 'window.cc', 51 'window.cc',
48 'window.h', 52 'window.h',
49 'window_delegate.h', 53 'window_delegate.h',
50 'window_observer.h', 54 'window_observer.h',
51 'window_types.h', 55 'window_types.h',
52 ], 56 ],
53 }, 57 },
54 { 58 {
55 'target_name': 'test_support_aura', 59 'target_name': 'test_support_aura',
56 'type': 'static_library', 60 'type': 'static_library',
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 ], 125 ],
122 'include_dirs': [ 126 'include_dirs': [
123 '..', 127 '..',
124 ], 128 ],
125 'sources': [ 129 'sources': [
126 'test/run_all_unittests.cc', 130 'test/run_all_unittests.cc',
127 'test/test_suite.cc', 131 'test/test_suite.cc',
128 'test/test_suite.h', 132 'test/test_suite.h',
129 'desktop_unittest.cc', 133 'desktop_unittest.cc',
130 'event_filter_unittest.cc', 134 'event_filter_unittest.cc',
135 'image_grid_unittest.cc',
131 'window_unittest.cc', 136 'window_unittest.cc',
132 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', 137 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
133 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', 138 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
134 ], 139 ],
135 # osmesa GL implementation is used on linux. 140 # osmesa GL implementation is used on linux.
136 'conditions': [ 141 'conditions': [
137 ['OS=="linux"', { 142 ['OS=="linux"', {
138 'dependencies': [ 143 'dependencies': [
139 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', 144 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa',
140 ], 145 ],
141 }], 146 }],
142 ], 147 ],
143 }, 148 },
144 ], 149 ],
145 } 150 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698