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

Side by Side Diff: components/mus/BUILD.gn

Issue 1722743002: Adds ability for chrome to behave as mojo_runner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge to tip of tree 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//mojo/public/mojo_application.gni") 7 import("//mojo/public/mojo_application.gni")
8 import("//mojo/public/mojo_application_manifest.gni") 8 import("//mojo/public/mojo_application_manifest.gni")
9 import("//tools/grit/repack.gni") 9 import("//tools/grit/repack.gni")
10 10
(...skipping 18 matching lines...) Expand all
29 } 29 }
30 } else { 30 } else {
31 mojo_native_application("mus") { 31 mojo_native_application("mus") {
32 sources = [ 32 sources = [
33 "main.cc", 33 "main.cc",
34 ] 34 ]
35 35
36 deps = [ 36 deps = [
37 ":lib", 37 ":lib",
38 ":manifest", 38 ":manifest",
39 "//mojo/platform_handle:for_shared_library",
39 "//mojo/shell/public/cpp:sources", 40 "//mojo/shell/public/cpp:sources",
40 ] 41 ]
41 42
42 if (is_win) { 43 if (is_win) {
43 deps += [ ":copy_gl_libraries" ] 44 deps += [ ":copy_gl_libraries" ]
44 } 45 }
45 } 46 }
46 47
47 mojo_application_manifest("manifest") { 48 mojo_application_manifest("manifest") {
48 application_name = "mus" 49 application_name = "mus"
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 135
135 repack("resources_200") { 136 repack("resources_200") {
136 sources = [ 137 sources = [
137 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", 138 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak",
138 ] 139 ]
139 output = "$root_out_dir/mus/resources/mus_app_resources_200.pak" 140 output = "$root_out_dir/mus/resources/mus_app_resources_200.pak"
140 deps = [ 141 deps = [
141 "//ui/resources", 142 "//ui/resources",
142 ] 143 ]
143 } 144 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698