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

Side by Side Diff: mojo/application/public/cpp/BUILD.gn

Issue 1183443002: Reland: Introduce the devices Mojo app (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn check... 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 | « device/usb/usb_context.cc ('k') | no next file » | 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 # GYP version: mojo/mojo_base.gyp:mojo_application_base 5 # GYP version: mojo/mojo_base.gyp:mojo_application_base
6 source_set("cpp") { 6 source_set("cpp") {
7 deps = [ 7 public_deps = [
8 ":sources", 8 ":sources",
9 ":init_commandline", 9 ":init_commandline",
10 ] 10 ]
11 } 11 }
12 12
13 # Like the target above, but without special commandline initialization that 13 # Like the target above, but without special commandline initialization that
14 # apps use. 14 # apps use.
15 source_set("cpp_for_chromium") { 15 source_set("cpp_for_chromium") {
16 deps = [ 16 public_deps = [
17 ":sources", 17 ":sources",
18 ] 18 ]
19 } 19 }
20 20
21 source_set("sources") { 21 source_set("sources") {
22 sources = [ 22 sources = [
23 "app_lifetime_helper.h", 23 "app_lifetime_helper.h",
24 "application_connection.h", 24 "application_connection.h",
25 "application_delegate.h", 25 "application_delegate.h",
26 "application_impl.h", 26 "application_impl.h",
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 ] 90 ]
91 91
92 data_deps = [] 92 data_deps = []
93 if (is_android) { 93 if (is_android) {
94 data_deps += [ "//mojo/android" ] 94 data_deps += [ "//mojo/android" ]
95 } 95 }
96 if (!is_component_build) { 96 if (!is_component_build) {
97 data_deps += [ "//mojo/runner" ] 97 data_deps += [ "//mojo/runner" ]
98 } 98 }
99 } 99 }
OLDNEW
« no previous file with comments | « device/usb/usb_context.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698