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

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

Issue 1186683008: Revert of Build Mojo apps in subdirectories, like application packages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 | « mandoline/app/android/BUILD.gn ('k') | mandoline/ui/omnibox/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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//mojo/public/mojo_application.gni") 6 import("//mojo/mojo_application_package.gni")
7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") 7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
8 8
9 mojo_native_application("browser") { 9 mojo_application_package("browser") {
10 sources = [ 10 sources = [
11 "main.cc", 11 "main.cc",
12 ] 12 ]
13 13
14 deps = [ 14 deps = [
15 ":lib", 15 ":lib",
16 "//mandoline/services/navigation/public/interfaces", 16 "//mandoline/services/navigation/public/interfaces",
17 "//mojo/application/public/cpp", 17 "//mojo/application/public/cpp",
18 "//third_party/icu:icudata", 18 "//third_party/icu:icudata",
19 "//ui/resources:ui_test_pak", 19 "//ui/resources:ui_test_pak",
20 ] 20 ]
21
22 resources = [ 21 resources = [
23 "$root_out_dir/icudtl.dat", 22 "$root_out_dir/icudtl.dat",
24 "$root_out_dir/ui_test.pak", 23 "$root_out_dir/ui_test.pak",
25 ] 24 ]
26 } 25 }
27 26
28 source_set("lib") { 27 source_set("lib") {
29 sources = [ 28 sources = [
30 "browser.cc", 29 "browser.cc",
31 "browser.h", 30 "browser.h",
(...skipping 22 matching lines...) Expand all
54 ] 53 ]
55 deps += [ "//mandoline/ui/aura" ] 54 deps += [ "//mandoline/ui/aura" ]
56 } else { 55 } else {
57 assert(is_android) 56 assert(is_android)
58 sources += [ 57 sources += [
59 "android/android_ui.cc", 58 "android/android_ui.cc",
60 "android/android_ui.h", 59 "android/android_ui.h",
61 ] 60 ]
62 } 61 }
63 } 62 }
OLDNEW
« no previous file with comments | « mandoline/app/android/BUILD.gn ('k') | mandoline/ui/omnibox/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698