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: ui/app_list/app_list.gyp

Issue 57433011: Restructure the events target into two components: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « remoting/remoting.gyp ('k') | ui/aura/aura.gyp » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 {
11 'target_name': 'app_list', 11 'target_name': 'app_list',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '../../base/base.gyp:base', 14 '../../base/base.gyp:base',
15 '../../base/base.gyp:base_i18n', 15 '../../base/base.gyp:base_i18n',
16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
17 '../../skia/skia.gyp:skia', 17 '../../skia/skia.gyp:skia',
18 '../base/strings/ui_strings.gyp:ui_strings', 18 '../base/strings/ui_strings.gyp:ui_strings',
19 '../compositor/compositor.gyp:compositor', 19 '../compositor/compositor.gyp:compositor',
20 '../events/events.gyp:events',
21 '../gfx/gfx.gyp:gfx', 20 '../gfx/gfx.gyp:gfx',
22 '../ui.gyp:ui', 21 '../ui.gyp:ui',
23 '../ui.gyp:ui_resources', 22 '../ui.gyp:ui_resources',
24 ], 23 ],
25 'defines': [ 24 'defines': [
26 'APP_LIST_IMPLEMENTATION', 25 'APP_LIST_IMPLEMENTATION',
27 ], 26 ],
28 'sources': [ 27 'sources': [
29 'app_list_constants.cc', 28 'app_list_constants.cc',
30 'app_list_constants.h', 29 'app_list_constants.h',
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 'conditions': [ 125 'conditions': [
127 ['use_aura==1', { 126 ['use_aura==1', {
128 'dependencies': [ 127 'dependencies': [
129 '../aura/aura.gyp:aura', 128 '../aura/aura.gyp:aura',
130 ], 129 ],
131 }], 130 }],
132 ['toolkit_views==1', { 131 ['toolkit_views==1', {
133 'dependencies': [ 132 'dependencies': [
134 '../../content/content.gyp:content', 133 '../../content/content.gyp:content',
135 '../../content/content.gyp:content_browser', 134 '../../content/content.gyp:content_browser',
135 '../events/events.gyp:events',
136 '../views/controls/webview/webview.gyp:webview', 136 '../views/controls/webview/webview.gyp:webview',
137 '../views/views.gyp:views', 137 '../views/views.gyp:views',
138 ], 138 ],
139 }, { # toolkit_views==0 139 }, { # toolkit_views==0
140 'sources/': [ 140 'sources/': [
141 ['exclude', 'views/'], 141 ['exclude', 'views/'],
142 ], 142 ],
143 }], 143 }],
144 ['OS=="mac"', { 144 ['OS=="mac"', {
145 'dependencies': [ 145 'dependencies': [
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 'dependencies': [ 246 'dependencies': [
247 '../../base/allocator/allocator.gyp:allocator', 247 '../../base/allocator/allocator.gyp:allocator',
248 ], 248 ],
249 }], 249 }],
250 ], 250 ],
251 # Disable c4267 warnings until we fix size_t to int truncations. 251 # Disable c4267 warnings until we fix size_t to int truncations.
252 'msvs_disabled_warnings': [ 4267, ], 252 'msvs_disabled_warnings': [ 4267, ],
253 }, 253 },
254 ], 254 ],
255 } 255 }
OLDNEW
« no previous file with comments | « remoting/remoting.gyp ('k') | ui/aura/aura.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698