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

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

Issue 8770010: views: Move views.gyp to ui/views/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix aura build Created 9 years 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 | « content/content_browser.gypi ('k') | ui/views/DEPS » ('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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'aura_shell', 12 'target_name': 'aura_shell',
13 'type': '<(component)', 13 'type': '<(component)',
14 'dependencies': [ 14 'dependencies': [
15 '../../base/base.gyp:base', 15 '../../base/base.gyp:base',
16 '../../base/base.gyp:base_i18n', 16 '../../base/base.gyp:base_i18n',
17 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 17 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
18 '../../build/temp_gyp/googleurl.gyp:googleurl', 18 '../../build/temp_gyp/googleurl.gyp:googleurl',
19 '../../net/net.gyp:net', 19 '../../net/net.gyp:net',
20 '../../skia/skia.gyp:skia', 20 '../../skia/skia.gyp:skia',
21 '../../third_party/icu/icu.gyp:icui18n', 21 '../../third_party/icu/icu.gyp:icui18n',
22 '../../third_party/icu/icu.gyp:icuuc', 22 '../../third_party/icu/icu.gyp:icuuc',
23 '../../views/views.gyp:views',
24 '../aura/aura.gyp:aura', 23 '../aura/aura.gyp:aura',
25 '../base/strings/ui_strings.gyp:ui_strings', 24 '../base/strings/ui_strings.gyp:ui_strings',
26 '../gfx/compositor/compositor.gyp:compositor', 25 '../gfx/compositor/compositor.gyp:compositor',
27 '../ui.gyp:ui', 26 '../ui.gyp:ui',
28 '../ui.gyp:ui_resources', 27 '../ui.gyp:ui_resources',
29 '../ui.gyp:ui_resources_standard', 28 '../ui.gyp:ui_resources_standard',
29 '../views/views.gyp:views',
30 ], 30 ],
31 'defines': [ 31 'defines': [
32 'AURA_SHELL_IMPLEMENTATION', 32 'AURA_SHELL_IMPLEMENTATION',
33 ], 33 ],
34 'sources': [ 34 'sources': [
35 # All .cc, .h under views, except unittests 35 # All .cc, .h under views, except unittests
36 'always_on_top_controller.cc', 36 'always_on_top_controller.cc',
37 'always_on_top_controller.h', 37 'always_on_top_controller.h',
38 'app_list.cc', 38 'app_list.cc',
39 'app_list.h', 39 'app_list.h',
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 'type': 'executable', 123 'type': 'executable',
124 'dependencies': [ 124 'dependencies': [
125 '../../base/base.gyp:base', 125 '../../base/base.gyp:base',
126 '../../base/base.gyp:test_support_base', 126 '../../base/base.gyp:test_support_base',
127 '../../chrome/chrome_resources.gyp:packed_resources', 127 '../../chrome/chrome_resources.gyp:packed_resources',
128 '../../build/temp_gyp/googleurl.gyp:googleurl', 128 '../../build/temp_gyp/googleurl.gyp:googleurl',
129 '../../skia/skia.gyp:skia', 129 '../../skia/skia.gyp:skia',
130 '../../testing/gtest.gyp:gtest', 130 '../../testing/gtest.gyp:gtest',
131 '../../third_party/icu/icu.gyp:icui18n', 131 '../../third_party/icu/icu.gyp:icui18n',
132 '../../third_party/icu/icu.gyp:icuuc', 132 '../../third_party/icu/icu.gyp:icuuc',
133 '../../views/views.gyp:views', 133 '../aura/aura.gyp:aura',
134 '../aura/aura.gyp:test_support_aura',
134 '../gfx/compositor/compositor.gyp:compositor_test_support', 135 '../gfx/compositor/compositor.gyp:compositor_test_support',
135 '../gfx/compositor/compositor.gyp:test_compositor', 136 '../gfx/compositor/compositor.gyp:test_compositor',
136 '../ui.gyp:gfx_resources', 137 '../ui.gyp:gfx_resources',
137 '../ui.gyp:ui', 138 '../ui.gyp:ui',
138 '../ui.gyp:ui_resources', 139 '../ui.gyp:ui_resources',
139 '../ui.gyp:ui_resources_standard', 140 '../ui.gyp:ui_resources_standard',
140 '../aura/aura.gyp:aura', 141 '../views/views.gyp:views',
141 '../aura/aura.gyp:test_support_aura',
142 'aura_shell', 142 'aura_shell',
143 ], 143 ],
144 'sources': [ 144 'sources': [
145 'default_container_layout_manager_unittest.cc', 145 'default_container_layout_manager_unittest.cc',
146 'desktop_event_filter_unittest.cc', 146 'desktop_event_filter_unittest.cc',
147 'drag_drop_controller_unittest.cc', 147 'drag_drop_controller_unittest.cc',
148 'image_grid_unittest.cc', 148 'image_grid_unittest.cc',
149 'launcher/launcher_model_unittest.cc', 149 'launcher/launcher_model_unittest.cc',
150 'launcher/view_model_unittest.cc', 150 'launcher/view_model_unittest.cc',
151 'launcher/view_model_utils_unittest.cc', 151 'launcher/view_model_utils_unittest.cc',
(...skipping 20 matching lines...) Expand all
172 { 172 {
173 'target_name': 'aura_shell_exe', 173 'target_name': 'aura_shell_exe',
174 'type': 'executable', 174 'type': 'executable',
175 'dependencies': [ 175 'dependencies': [
176 '../../base/base.gyp:base', 176 '../../base/base.gyp:base',
177 '../../base/base.gyp:base_i18n', 177 '../../base/base.gyp:base_i18n',
178 '../../chrome/chrome_resources.gyp:packed_resources', 178 '../../chrome/chrome_resources.gyp:packed_resources',
179 '../../skia/skia.gyp:skia', 179 '../../skia/skia.gyp:skia',
180 '../../third_party/icu/icu.gyp:icui18n', 180 '../../third_party/icu/icu.gyp:icui18n',
181 '../../third_party/icu/icu.gyp:icuuc', 181 '../../third_party/icu/icu.gyp:icuuc',
182 '../../views/views.gyp:views',
183 '../aura/aura.gyp:aura', 182 '../aura/aura.gyp:aura',
184 '../gfx/compositor/compositor.gyp:compositor', 183 '../gfx/compositor/compositor.gyp:compositor',
185 '../gfx/compositor/compositor.gyp:compositor_test_support', 184 '../gfx/compositor/compositor.gyp:compositor_test_support',
186 '../ui.gyp:gfx_resources', 185 '../ui.gyp:gfx_resources',
187 '../ui.gyp:ui', 186 '../ui.gyp:ui',
188 '../ui.gyp:ui_resources', 187 '../ui.gyp:ui_resources',
189 '../ui.gyp:ui_resources_standard', 188 '../ui.gyp:ui_resources_standard',
190 '../../views/views.gyp:views_examples_lib', 189 '../views/views.gyp:views',
190 '../views/views.gyp:views_examples_lib',
191 'aura_shell', 191 'aura_shell',
192 ], 192 ],
193 'sources': [ 193 'sources': [
194 'examples/aura_shell_main.cc', 194 'examples/aura_shell_main.cc',
195 'examples/bubble.cc', 195 'examples/bubble.cc',
196 'examples/example_factory.h', 196 'examples/example_factory.h',
197 'examples/lock_view.cc', 197 'examples/lock_view.cc',
198 'examples/toplevel_window.cc', 198 'examples/toplevel_window.cc',
199 'examples/toplevel_window.h', 199 'examples/toplevel_window.h',
200 'examples/widgets.cc', 200 'examples/widgets.cc',
201 'examples/window_type_launcher.cc', 201 'examples/window_type_launcher.cc',
202 'examples/window_type_launcher.h', 202 'examples/window_type_launcher.h',
203 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', 203 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
204 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', 204 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
205 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa rd.rc', 205 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa rd.rc',
206 ], 206 ],
207 }, 207 },
208 ], 208 ],
209 } 209 }
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | ui/views/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698