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

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

Issue 8576005: IME (input method editor) support for Aura, part 3 of 3: Use ui::InputMethod in ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, review Created 9 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
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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 'layout_manager.cc', 43 'layout_manager.cc',
44 'layout_manager.h', 44 'layout_manager.h',
45 'screen_aura.cc', 45 'screen_aura.cc',
46 'screen_aura.h', 46 'screen_aura.h',
47 'window.cc', 47 'window.cc',
48 'window.h', 48 'window.h',
49 'window_delegate.h', 49 'window_delegate.h',
50 'window_observer.h', 50 'window_observer.h',
51 'window_types.h', 51 'window_types.h',
52 ], 52 ],
53 'conditions': [
54 ['use_ibus==1', {
55 'dependencies': [
56 '../../build/linux/system.gyp:ibus',
57 ],
58 }],
59 ],
53 }, 60 },
54 { 61 {
55 'target_name': 'test_support_aura', 62 'target_name': 'test_support_aura',
56 'type': 'static_library', 63 'type': 'static_library',
57 'dependencies': [ 64 'dependencies': [
58 '../../skia/skia.gyp:skia', 65 '../../skia/skia.gyp:skia',
59 '../../testing/gtest.gyp:gtest', 66 '../../testing/gtest.gyp:gtest',
60 '../gfx/compositor/compositor.gyp:test_compositor', 67 '../gfx/compositor/compositor.gyp:test_compositor',
61 '../ui.gyp:ui', 68 '../ui.gyp:ui',
62 'aura', 69 'aura',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 'conditions': [ 145 'conditions': [
139 ['OS=="linux"', { 146 ['OS=="linux"', {
140 'dependencies': [ 147 'dependencies': [
141 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', 148 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa',
142 ], 149 ],
143 }], 150 }],
144 ], 151 ],
145 }, 152 },
146 ], 153 ],
147 } 154 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698