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

Side by Side Diff: mojo/environment/BUILD.gn

Issue 339403003: Mojo: Make GetDefault{AsyncWaiter,Logger} static methods of Environment. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « mojo/bindings/js/waiting_callback.cc ('k') | mojo/environment/default_async_waiter.cc » ('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 # GYP version: mojo.gyp:mojo_environment_chromium 5 # GYP version: mojo.gyp:mojo_environment_chromium
6 static_library("chromium") { 6 static_library("chromium") {
7 output_name = "mojo_environment_chromium" 7 output_name = "mojo_environment_chromium"
8 8
9 sources = [ 9 sources = [
10 "default_async_waiter.cc",
11 "environment.cc", 10 "environment.cc",
12 ] 11 ]
13 12
14 deps = [ 13 deps = [
15 ":chromium_impl", 14 ":chromium_impl",
16 "//mojo/common", 15 "//mojo/common",
17 ] 16 ]
18 17
19 forward_dependent_configs_from = [ 18 forward_dependent_configs_from = [
20 ":chromium_impl", 19 ":chromium_impl",
21 ] 20 ]
22 } 21 }
23 22
24 # GYP version: mojo.gyp:mojo_environment_chromium_impl 23 # GYP version: mojo.gyp:mojo_environment_chromium_impl
25 component("chromium_impl") { 24 component("chromium_impl") {
26 output_name = "mojo_environment_impl" 25 output_name = "mojo_environment_impl"
27 visibility = "//mojo/*" 26 visibility = "//mojo/*"
28 27
29 sources = [ 28 sources = [
30 "default_async_waiter_impl.cc", 29 "default_async_waiter_impl.cc",
31 "default_async_waiter_impl.h", 30 "default_async_waiter_impl.h",
31 "default_logger_impl.cc",
32 "default_logger_impl.h",
32 ] 33 ]
33 34
34 defines = [ 35 defines = [
35 "MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION", 36 "MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION",
36 ] 37 ]
37 38
38 deps = [ 39 deps = [
39 "//base", 40 "//base",
40 "//base/third_party/dynamic_annotations", 41 "//base/third_party/dynamic_annotations",
41 "//mojo/common", 42 "//mojo/common",
42 ] 43 ]
43 } 44 }
OLDNEW
« no previous file with comments | « mojo/bindings/js/waiting_callback.cc ('k') | mojo/environment/default_async_waiter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698