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

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

Issue 814543006: Move //mojo/{public, edk} underneath //third_party (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 11 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 | « ui/keyboard/BUILD.gn ('k') | no next file » | 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 'keyboard_mojom_gen_js': '<(SHARED_INTERMEDIATE_DIR)/ui/keyboard/webui/keybo ard.mojom.js', 8 'keyboard_mojom_gen_js': '<(SHARED_INTERMEDIATE_DIR)/ui/keyboard/webui/keybo ard.mojom.js',
9 'inputview_dir': '../../third_party/google_input_tools/src/chrome/os/inputvi ew', 9 'inputview_dir': '../../third_party/google_input_tools/src/chrome/os/inputvi ew',
10 'inputview_gen_js': '<(SHARED_INTERMEDIATE_DIR)/ui/keyboard/resources/inputv iew.js', 10 'inputview_gen_js': '<(SHARED_INTERMEDIATE_DIR)/ui/keyboard/resources/inputv iew.js',
11 }, 11 },
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'keyboard_mojom_bindings', 14 'target_name': 'keyboard_mojom_bindings',
15 'type': 'none', 15 'type': 'none',
16 'sources': [ 16 'sources': [
17 'webui/keyboard.mojom', 17 'webui/keyboard.mojom',
18 ], 18 ],
19 'includes': [ '../../mojo/mojom_bindings_generator.gypi' ], 19 'includes': [ '../../third_party/mojo/mojom_bindings_generator.gypi' ],
20 }, 20 },
21 { 21 {
22 # GN version: //ui/keyboard:resources 22 # GN version: //ui/keyboard:resources
23 'target_name': 'keyboard_resources', 23 'target_name': 'keyboard_resources',
24 'dependencies': [ 24 'dependencies': [
25 'keyboard_mojom_bindings', 25 'keyboard_mojom_bindings',
26 '../../third_party/google_input_tools/inputview.gyp:inputview', 26 '../../third_party/google_input_tools/inputview.gyp:inputview',
27 ], 27 ],
28 'type': 'none', 28 'type': 'none',
29 'variables': { 29 'variables': {
(...skipping 26 matching lines...) Expand all
56 { 56 {
57 # GN version: //ui/keyboard 57 # GN version: //ui/keyboard
58 'target_name': 'keyboard', 58 'target_name': 'keyboard',
59 'type': '<(component)', 59 'type': '<(component)',
60 'dependencies': [ 60 'dependencies': [
61 '../../base/base.gyp:base', 61 '../../base/base.gyp:base',
62 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 62 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
63 '../../content/content.gyp:content_browser', 63 '../../content/content.gyp:content_browser',
64 '../../ipc/ipc.gyp:ipc', 64 '../../ipc/ipc.gyp:ipc',
65 '../../mojo/mojo_base.gyp:mojo_environment_chromium', 65 '../../mojo/mojo_base.gyp:mojo_environment_chromium',
66 '../../mojo/mojo_edk.gyp:mojo_system_impl',
67 '../../mojo/mojo_public.gyp:mojo_cpp_bindings',
68 '../../mojo/mojo_public.gyp:mojo_js_bindings',
69 '../../skia/skia.gyp:skia', 66 '../../skia/skia.gyp:skia',
67 '../../third_party/mojo/mojo_edk.gyp:mojo_system_impl',
68 '../../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
69 '../../third_party/mojo/mojo_public.gyp:mojo_js_bindings',
70 '../../url/url.gyp:url_lib', 70 '../../url/url.gyp:url_lib',
71 '../aura/aura.gyp:aura', 71 '../aura/aura.gyp:aura',
72 '../base/ui_base.gyp:ui_base', 72 '../base/ui_base.gyp:ui_base',
73 '../compositor/compositor.gyp:compositor', 73 '../compositor/compositor.gyp:compositor',
74 '../events/events.gyp:dom4_keycode_converter', 74 '../events/events.gyp:dom4_keycode_converter',
75 '../events/events.gyp:events', 75 '../events/events.gyp:events',
76 '../gfx/gfx.gyp:gfx', 76 '../gfx/gfx.gyp:gfx',
77 '../gfx/gfx.gyp:gfx_geometry', 77 '../gfx/gfx.gyp:gfx_geometry',
78 '../wm/wm.gyp:wm', 78 '../wm/wm.gyp:wm',
79 'keyboard_mojom_bindings', 79 'keyboard_mojom_bindings',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 }], 142 }],
143 ['OS=="win" and win_use_allocator_shim==1', { 143 ['OS=="win" and win_use_allocator_shim==1', {
144 'dependencies': [ 144 'dependencies': [
145 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 145 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
146 ], 146 ],
147 }], 147 }],
148 ], 148 ],
149 }, 149 },
150 ], 150 ],
151 } 151 }
OLDNEW
« no previous file with comments | « ui/keyboard/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698