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

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

Issue 25015003: gfx: Create a separate gfx component out of ui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 2 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
« no previous file with comments | « ui/gl/gl.gyp ('k') | ui/message_center/message_center.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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 26 matching lines...) Expand all
37 'type': '<(component)', 37 'type': '<(component)',
38 'dependencies': [ 38 'dependencies': [
39 '../../base/base.gyp:base', 39 '../../base/base.gyp:base',
40 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 40 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
41 '../../content/content.gyp:content_browser', 41 '../../content/content.gyp:content_browser',
42 '../../ipc/ipc.gyp:ipc', 42 '../../ipc/ipc.gyp:ipc',
43 '../../skia/skia.gyp:skia', 43 '../../skia/skia.gyp:skia',
44 '../../url/url.gyp:url_lib', 44 '../../url/url.gyp:url_lib',
45 '../aura/aura.gyp:aura', 45 '../aura/aura.gyp:aura',
46 '../compositor/compositor.gyp:compositor', 46 '../compositor/compositor.gyp:compositor',
47 '../gfx/gfx.gyp:gfx',
47 '../ui.gyp:ui', 48 '../ui.gyp:ui',
48 'keyboard_resources', 49 'keyboard_resources',
49 ], 50 ],
50 'defines': [ 51 'defines': [
51 'KEYBOARD_IMPLEMENTATION', 52 'KEYBOARD_IMPLEMENTATION',
52 ], 53 ],
53 'sources': [ 54 'sources': [
54 'keyboard.cc', 55 'keyboard.cc',
55 'keyboard.h', 56 'keyboard.h',
56 'keyboard_constants.cc', 57 'keyboard_constants.cc',
(...skipping 19 matching lines...) Expand all
76 'type': '<(gtest_target_type)', 77 'type': '<(gtest_target_type)',
77 'dependencies': [ 78 'dependencies': [
78 '../../base/base.gyp:base', 79 '../../base/base.gyp:base',
79 '../../base/base.gyp:test_support_base', 80 '../../base/base.gyp:test_support_base',
80 '../../content/content.gyp:content', 81 '../../content/content.gyp:content',
81 '../../skia/skia.gyp:skia', 82 '../../skia/skia.gyp:skia',
82 '../../testing/gtest.gyp:gtest', 83 '../../testing/gtest.gyp:gtest',
83 '../aura/aura.gyp:aura', 84 '../aura/aura.gyp:aura',
84 '../aura/aura.gyp:aura_test_support', 85 '../aura/aura.gyp:aura_test_support',
85 '../compositor/compositor.gyp:compositor', 86 '../compositor/compositor.gyp:compositor',
87 '../gfx/gfx.gyp:gfx',
86 '../ui.gyp:run_ui_unittests', 88 '../ui.gyp:run_ui_unittests',
87 '../ui.gyp:ui', 89 '../ui.gyp:ui',
88 'keyboard', 90 'keyboard',
89 ], 91 ],
90 'sources': [ 92 'sources': [
91 'keyboard_controller_unittest.cc', 93 'keyboard_controller_unittest.cc',
92 'keyboard_test_suite.cc', 94 'keyboard_test_suite.cc',
93 ], 95 ],
94 'conditions': [ 96 'conditions': [
95 ['OS=="linux" and linux_use_tcmalloc==1', { 97 ['OS=="linux" and linux_use_tcmalloc==1', {
96 'dependencies': [ 98 'dependencies': [
97 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 99 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
98 ], 100 ],
99 'link_settings': { 101 'link_settings': {
100 'ldflags': ['-rdynamic'], 102 'ldflags': ['-rdynamic'],
101 }, 103 },
102 }], 104 }],
103 ], 105 ],
104 }, 106 },
105 ], 107 ],
106 } 108 }
OLDNEW
« no previous file with comments | « ui/gl/gl.gyp ('k') | ui/message_center/message_center.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698