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

Side by Side Diff: ui/keyboard/webui/BUILD.gn

Issue 544423002: Convert GN visibility variables to lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 6 years, 3 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/gl/BUILD.gn ('k') | ui/resources/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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 6
7 # GYP version: ui/keyboard/keyboard.gyp:keyboard_mojom_bindings 7 # GYP version: ui/keyboard/keyboard.gyp:keyboard_mojom_bindings
8 mojom("mojo_bindings") { 8 mojom("mojo_bindings") {
9 sources = [ 9 sources = [
10 "keyboard.mojom", 10 "keyboard.mojom",
11 ] 11 ]
12 } 12 }
13 13
14 # GYP version: part of ui/keyboard/keyboard.gyp:keyboard 14 # GYP version: part of ui/keyboard/keyboard.gyp:keyboard
15 source_set("webui") { 15 source_set("webui") {
16 visibility = "//ui/keyboard" 16 visibility = [ "//ui/keyboard" ]
17 17
18 sources = [ 18 sources = [
19 "../keyboard_export.h", 19 "../keyboard_export.h",
20 "vk_mojo_handler.cc", 20 "vk_mojo_handler.cc",
21 "vk_mojo_handler.h", 21 "vk_mojo_handler.h",
22 "vk_webui_controller.cc", 22 "vk_webui_controller.cc",
23 "vk_webui_controller.h", 23 "vk_webui_controller.h",
24 ] 24 ]
25 25
26 deps = [ 26 deps = [
27 ":mojo_bindings", 27 ":mojo_bindings",
28 "//base", 28 "//base",
29 "//content/public/browser", 29 "//content/public/browser",
30 "//content/public/common", 30 "//content/public/common",
31 "//ui/aura", 31 "//ui/aura",
32 "//ui/base", 32 "//ui/base",
33 "//ui/keyboard:resources", 33 "//ui/keyboard:resources",
34 "//mojo/public/cpp/bindings", 34 "//mojo/public/cpp/bindings",
35 "//mojo/environment:chromium", 35 "//mojo/environment:chromium",
36 "//mojo/bindings/js", 36 "//mojo/bindings/js",
37 "//mojo/system", 37 "//mojo/system",
38 ] 38 ]
39 39
40 defines = [ "KEYBOARD_IMPLEMENTATION" ] 40 defines = [ "KEYBOARD_IMPLEMENTATION" ]
41 41
42 } 42 }
OLDNEW
« no previous file with comments | « ui/gl/BUILD.gn ('k') | ui/resources/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698