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

Side by Side Diff: mandoline/ui/desktop_ui/BUILD.gn

Issue 1635613002: [mojo-bindings] Support reuse of native enum classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: do not generate validators for native-only enums Created 4 years, 10 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
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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//mojo/public/mojo_application.gni") 6 import("//mojo/public/mojo_application.gni")
7 import("//mojo/public/tools/bindings/mojom.gni") 7 import("//mojo/public/tools/bindings/mojom.gni")
8 8
9 mojo_native_application("desktop_ui") { 9 mojo_native_application("desktop_ui") {
10 sources = [ 10 sources = [
(...skipping 17 matching lines...) Expand all
28 "browser_window.cc", 28 "browser_window.cc",
29 "browser_window.h", 29 "browser_window.h",
30 "find_bar_delegate.h", 30 "find_bar_delegate.h",
31 "find_bar_view.cc", 31 "find_bar_view.cc",
32 "find_bar_view.h", 32 "find_bar_view.h",
33 "toolbar_view.cc", 33 "toolbar_view.cc",
34 "toolbar_view.h", 34 "toolbar_view.h",
35 ] 35 ]
36 36
37 deps = [ 37 deps = [
38 "public/interfaces",
39 "//base",
40 "//components/web_view/public/cpp",
41 "//components/web_view/public/interfaces",
42 "//mojo/common:common_base",
43 "//mojo/converters/geometry", 38 "//mojo/converters/geometry",
44 "//mojo/public/cpp/bindings",
45 "//mojo/services/tracing/public/cpp",
46 "//mojo/services/tracing/public/interfaces", 39 "//mojo/services/tracing/public/interfaces",
47 "//mojo/shell/public/cpp:sources",
48 "//skia", 40 "//skia",
49 "//ui/gfx", 41 "//ui/gfx",
50 "//ui/gfx/geometry", 42 "//ui/gfx/geometry",
51 "//ui/mojo/init", 43 "//ui/mojo/init",
44 "//ui/views/mus:for_mojo_application",
45 ]
46
47 public_deps = [
48 "public/interfaces",
yzshen1 2016/01/26 04:36:29 nit: I think according to GN style guide, it is pr
49 "//base",
50 "//components/mus/public/cpp",
51 "//components/mus/public/interfaces",
52 "//components/web_view/public/cpp",
53 "//components/web_view/public/interfaces",
54 "//mojo/common:common_base",
55 "//mojo/public/cpp/bindings",
56 "//mojo/services/tracing/public/cpp",
57 "//mojo/shell/public/cpp:sources",
52 "//ui/views", 58 "//ui/views",
53 "//ui/views/mus:for_mojo_application",
54 "//url", 59 "//url",
55 ] 60 ]
56 } 61 }
57 62
58 mojo_native_application("mandoline_browser_apptests") { 63 mojo_native_application("mandoline_browser_apptests") {
59 testonly = true 64 testonly = true
60 65
61 sources = [ 66 sources = [
62 "browser_apptest.cc", 67 "browser_apptest.cc",
63 ] 68 ]
64 69
65 deps = [ 70 deps = [
66 "//mandoline/ui/desktop_ui/public/interfaces", 71 "//mandoline/ui/desktop_ui/public/interfaces",
67 "//mojo/shell/public/cpp:sources", 72 "//mojo/shell/public/cpp:sources",
68 "//mojo/shell/public/cpp:test_support", 73 "//mojo/shell/public/cpp:test_support",
69 ] 74 ]
70 75
71 data_deps = [ 76 data_deps = [
72 ":desktop_ui", 77 ":desktop_ui",
73 ] 78 ]
74 } 79 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698