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

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

Issue 109433013: Move geometric types to a separate, more lightweight target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 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
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 28 matching lines...) Expand all
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 '../events/events.gyp:events', 47 '../events/events.gyp:events',
48 '../gfx/gfx.gyp:gfx', 48 '../gfx/gfx.gyp:gfx',
49 '../gfx/gfx.gyp:gfx_geometry',
49 '../ui.gyp:ui', 50 '../ui.gyp:ui',
50 'keyboard_resources', 51 'keyboard_resources',
51 ], 52 ],
52 'defines': [ 53 'defines': [
53 'KEYBOARD_IMPLEMENTATION', 54 'KEYBOARD_IMPLEMENTATION',
54 ], 55 ],
55 'sources': [ 56 'sources': [
56 'keyboard.cc', 57 'keyboard.cc',
57 'keyboard.h', 58 'keyboard.h',
58 'keyboard_constants.cc', 59 'keyboard_constants.cc',
(...skipping 21 matching lines...) Expand all
80 '../../base/base.gyp:base', 81 '../../base/base.gyp:base',
81 '../../base/base.gyp:test_support_base', 82 '../../base/base.gyp:test_support_base',
82 '../../content/content.gyp:content', 83 '../../content/content.gyp:content',
83 '../../skia/skia.gyp:skia', 84 '../../skia/skia.gyp:skia',
84 '../../testing/gtest.gyp:gtest', 85 '../../testing/gtest.gyp:gtest',
85 '../../url/url.gyp:url_lib', 86 '../../url/url.gyp:url_lib',
86 '../aura/aura.gyp:aura', 87 '../aura/aura.gyp:aura',
87 '../aura/aura.gyp:aura_test_support', 88 '../aura/aura.gyp:aura_test_support',
88 '../compositor/compositor.gyp:compositor', 89 '../compositor/compositor.gyp:compositor',
89 '../gfx/gfx.gyp:gfx', 90 '../gfx/gfx.gyp:gfx',
91 '../gfx/gfx.gyp:gfx_geometry',
90 '../ui.gyp:ui', 92 '../ui.gyp:ui',
91 '../ui_unittests.gyp:run_ui_unittests', 93 '../ui_unittests.gyp:run_ui_unittests',
92 'keyboard', 94 'keyboard',
93 ], 95 ],
94 'sources': [ 96 'sources': [
95 'keyboard_controller_unittest.cc', 97 'keyboard_controller_unittest.cc',
96 ], 98 ],
97 'conditions': [ 99 'conditions': [
98 ['OS=="linux" and linux_use_tcmalloc==1', { 100 ['OS=="linux" and linux_use_tcmalloc==1', {
99 'dependencies': [ 101 'dependencies': [
100 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 102 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
101 ], 103 ],
102 'link_settings': { 104 'link_settings': {
103 'ldflags': ['-rdynamic'], 105 'ldflags': ['-rdynamic'],
104 }, 106 },
105 }], 107 }],
106 ['OS=="win" and win_use_allocator_shim==1', { 108 ['OS=="win" and win_use_allocator_shim==1', {
107 'dependencies': [ 109 'dependencies': [
108 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 110 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
109 ], 111 ],
110 }], 112 }],
111 ], 113 ],
112 }, 114 },
113 ], 115 ],
114 } 116 }
OLDNEW
« ui/aura/aura.gyp ('K') | « 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