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

Side by Side Diff: mash/browser/BUILD.gn

Issue 2009073003: Move mojo/converters/geometry -> ui/gfx/geometry/mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 7 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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/mojo_application_manifest.gni") 7 import("//mojo/public/mojo_application_manifest.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//tools/grit/repack.gni") 9 import("//tools/grit/repack.gni")
10 10
11 source_set("lib") { 11 source_set("lib") {
12 testonly = true 12 testonly = true
13 sources = [ 13 sources = [
14 "browser.cc", 14 "browser.cc",
15 "browser.h", 15 "browser.h",
16 ] 16 ]
17 17
18 deps = [ 18 deps = [
19 "//base", 19 "//base",
20 "//components/mus/public/cpp", 20 "//components/mus/public/cpp",
21 "//mash/public/interfaces", 21 "//mash/public/interfaces",
22 "//mojo/converters/geometry",
23 "//mojo/public/cpp/bindings", 22 "//mojo/public/cpp/bindings",
24 "//services/catalog/public/interfaces", 23 "//services/catalog/public/interfaces",
25 "//services/navigation/public/interfaces", 24 "//services/navigation/public/interfaces",
26 "//services/shell/public/cpp", 25 "//services/shell/public/cpp",
27 "//services/shell/public/interfaces", 26 "//services/shell/public/interfaces",
28 "//services/tracing/public/cpp", 27 "//services/tracing/public/cpp",
28 "//ui/gfx/geometry/mojo",
29 "//ui/native_theme", 29 "//ui/native_theme",
30 "//ui/views", 30 "//ui/views",
31 "//ui/views/mus:for_mojo_application", 31 "//ui/views/mus:for_mojo_application",
32 "//url", 32 "//url",
33 ] 33 ]
34 34
35 data_deps = [ 35 data_deps = [
36 "//services/navigation", 36 "//services/navigation",
37 ] 37 ]
38 } 38 }
(...skipping 15 matching lines...) Expand all
54 data_deps = [ 54 data_deps = [
55 ":manifest", 55 ":manifest",
56 "//components/mus", 56 "//components/mus",
57 ] 57 ]
58 } 58 }
59 59
60 mojo_application_manifest("manifest") { 60 mojo_application_manifest("manifest") {
61 application_name = "browser" 61 application_name = "browser"
62 source = "manifest.json" 62 source = "manifest.json"
63 } 63 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698