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

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

Issue 565323002: Move application:chromium bindings to mojo/application/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mojo/application/ Created 6 years, 3 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 # GYP version: mojo/mojo_public.gypi:mojo_application_base 5 # GYP version: mojo/mojo_public.gypi:mojo_application_base
6 source_set("application") { 6 source_set("application") {
7 sources = [ 7 sources = [
8 "application_connection.h", 8 "application_connection.h",
9 "application_delegate.h", 9 "application_delegate.h",
10 "application_impl.h", 10 "application_impl.h",
(...skipping 12 matching lines...) Expand all
23 "lib/weak_service_provider.cc", 23 "lib/weak_service_provider.cc",
24 "lib/weak_service_provider.h", 24 "lib/weak_service_provider.h",
25 ] 25 ]
26 26
27 deps = [ 27 deps = [
28 "//mojo/public/cpp/bindings", 28 "//mojo/public/cpp/bindings",
29 "//mojo/public/interfaces/application", 29 "//mojo/public/interfaces/application",
30 ] 30 ]
31 } 31 }
32 32
33 # GYP version: mojo/mojo_base.gyp:mojo_application_chromium
34 source_set("chromium") {
35 sources = [
36 "lib/application_runner_chromium.cc"
37 ]
38
39 deps = [
40 ":application",
41 "//mojo/common",
42 "//mojo/environment:chromium",
43 ]
44 }
45
46 # GYP version: mojo/mojo_public.gypi:mojo_application_standalone 33 # GYP version: mojo/mojo_public.gypi:mojo_application_standalone
47 source_set("standalone") { 34 source_set("standalone") {
48 sources = [ 35 sources = [
49 "lib/application_runner.cc" 36 "lib/application_runner.cc"
50 ] 37 ]
51 38
52 deps = [ 39 deps = [
53 ":application", 40 ":application",
54 "//mojo/public/cpp/environment:standalone", 41 "//mojo/public/cpp/environment:standalone",
55 ] 42 ]
56 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698