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

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

Issue 1922373002: Make ui/gfx/range a component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed windows issues + addressed nit Created 4 years, 7 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
« no previous file with comments | « content/content_tests.gypi ('k') | ui/base/ime/BUILD.gn » ('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 # GN version: //ui/app_list 11 # GN version: //ui/app_list
12 'target_name': 'app_list', 12 'target_name': 'app_list',
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 '../../components/components.gyp:keyed_service_core', 18 '../../components/components.gyp:keyed_service_core',
19 '../../skia/skia.gyp:skia', 19 '../../skia/skia.gyp:skia',
20 '../base/ui_base.gyp:ui_base', 20 '../base/ui_base.gyp:ui_base',
21 '../base/ime/ui_base_ime.gyp:ui_base_ime', 21 '../base/ime/ui_base_ime.gyp:ui_base_ime',
22 '../compositor/compositor.gyp:compositor', 22 '../compositor/compositor.gyp:compositor',
23 '../display/display.gyp:display', 23 '../display/display.gyp:display',
24 '../events/events.gyp:events_base', 24 '../events/events.gyp:events_base',
25 '../gfx/gfx.gyp:gfx', 25 '../gfx/gfx.gyp:gfx',
26 '../gfx/gfx.gyp:gfx_geometry', 26 '../gfx/gfx.gyp:gfx_geometry',
27 '../gfx/gfx.gyp:gfx_range',
27 '../resources/ui_resources.gyp:ui_resources', 28 '../resources/ui_resources.gyp:ui_resources',
28 '../strings/ui_strings.gyp:ui_strings', 29 '../strings/ui_strings.gyp:ui_strings',
29 '../../third_party/icu/icu.gyp:icuuc', 30 '../../third_party/icu/icu.gyp:icuuc',
30 'resources/app_list_resources.gyp:app_list_resources', 31 'resources/app_list_resources.gyp:app_list_resources',
31 ], 32 ],
32 'defines': [ 33 'defines': [
33 'APP_LIST_IMPLEMENTATION', 34 'APP_LIST_IMPLEMENTATION',
34 ], 35 ],
35 'sources': [ 36 'sources': [
36 # Note: sources list duplicated in GN build. 37 # Note: sources list duplicated in GN build.
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 # GN version: //ui/app_list:app_list_unittests 248 # GN version: //ui/app_list:app_list_unittests
248 'target_name': 'app_list_unittests', 249 'target_name': 'app_list_unittests',
249 'type': 'executable', 250 'type': 'executable',
250 'dependencies': [ 251 'dependencies': [
251 '../../base/base.gyp:base', 252 '../../base/base.gyp:base',
252 '../../base/base.gyp:test_support_base', 253 '../../base/base.gyp:test_support_base',
253 '../../skia/skia.gyp:skia', 254 '../../skia/skia.gyp:skia',
254 '../../testing/gtest.gyp:gtest', 255 '../../testing/gtest.gyp:gtest',
255 '../base/ui_base.gyp:ui_base', 256 '../base/ui_base.gyp:ui_base',
256 '../compositor/compositor.gyp:compositor', 257 '../compositor/compositor.gyp:compositor',
258 '../gfx/gfx.gyp:gfx_range',
257 '../resources/ui_resources.gyp:ui_resources', 259 '../resources/ui_resources.gyp:ui_resources',
258 '../resources/ui_resources.gyp:ui_test_pak', 260 '../resources/ui_resources.gyp:ui_test_pak',
259 'app_list', 261 'app_list',
260 'app_list_test_support', 262 'app_list_test_support',
261 ], 263 ],
262 'sources': [ 264 'sources': [
263 # Note: sources list duplicated in GN build. 265 # Note: sources list duplicated in GN build.
264 'app_list_item_list_unittest.cc', 266 'app_list_item_list_unittest.cc',
265 'app_list_model_unittest.cc', 267 'app_list_model_unittest.cc',
266 'cocoa/app_list_view_controller_unittest.mm', 268 'cocoa/app_list_view_controller_unittest.mm',
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 'dependencies': [ 385 'dependencies': [
384 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 386 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
385 ], 387 ],
386 }], 388 }],
387 ], 389 ],
388 }, 390 },
389 ], 391 ],
390 }], 392 }],
391 ], 393 ],
392 } 394 }
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | ui/base/ime/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698