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

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

Issue 1985223003: Factor stuff from ApplicationImpl out to a new class, ApplicationImplBase. (Closed) Base URL: https://github.com/domokit/mojo.git@work790_app_test_base_no_app_impl
Patch Set: fix android 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 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("../../mojo_sdk.gni") 5 import("../../mojo_sdk.gni")
6 6
7 # GYP version: mojo/public/mojo_public.gyp:mojo_application_base 7 # GYP version: mojo/public/mojo_public.gyp:mojo_application_base
8 mojo_sdk_source_set("application") { 8 mojo_sdk_source_set("application") {
9 sources = [ 9 sources = [
10 "application_delegate.h", 10 "application_delegate.h",
11 "application_impl.h", 11 "application_impl.h",
12 "application_impl_base.h",
12 "connect.h", 13 "connect.h",
13 "connection_context.h", 14 "connection_context.h",
14 "lib/application_delegate.cc", 15 "lib/application_delegate.cc",
15 "lib/application_impl.cc", 16 "lib/application_impl.cc",
17 "lib/application_impl_base.cc",
16 "lib/connect.cc", 18 "lib/connect.cc",
17 "lib/service_provider_impl.cc", 19 "lib/service_provider_impl.cc",
18 "service_connector.h", 20 "service_connector.h",
19 "service_provider_impl.h", 21 "service_provider_impl.h",
20 ] 22 ]
21 23
22 mojo_sdk_deps = [ 24 mojo_sdk_deps = [
23 "mojo/public/cpp/bindings", 25 "mojo/public/cpp/bindings",
24 "mojo/public/cpp/environment", 26 "mojo/public/cpp/environment",
25 "mojo/public/cpp/system", 27 "mojo/public/cpp/system",
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 ] 80 ]
79 81
80 mojo_sdk_deps = [ 82 mojo_sdk_deps = [
81 "mojo/public/interfaces/application", 83 "mojo/public/interfaces/application",
82 "mojo/public/cpp/environment:standalone", 84 "mojo/public/cpp/environment:standalone",
83 "mojo/public/cpp/system", 85 "mojo/public/cpp/system",
84 "mojo/public/cpp/utility", 86 "mojo/public/cpp/utility",
85 "mojo/public/interfaces/application", 87 "mojo/public/interfaces/application",
86 ] 88 ]
87 } 89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698