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

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

Issue 346613004: Use loadable module instead of shared library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Follow review Created 6 years, 5 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/common/mojo_common_export.h ('k') | mojo/environment/default_async_waiter_impl.h » ('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_impl.cc",
11 "default_async_waiter_impl.h",
12 "default_logger_impl.cc",
13 "default_logger_impl.h",
10 "environment.cc", 14 "environment.cc",
11 # TODO(vtl): This is kind of ugly. (See TODO in logging.h.) 15 # TODO(vtl): This is kind of ugly. (See TODO in logging.h.)
12 "../public/cpp/environment/logging.h", 16 "../public/cpp/environment/logging.h",
13 "../public/cpp/environment/lib/logging.cc", 17 "../public/cpp/environment/lib/logging.cc",
14 ] 18 ]
15 19
16 deps = [ 20 deps = [
17 ":chromium_impl",
18 "//mojo/common",
19 ]
20
21 forward_dependent_configs_from = [
22 ":chromium_impl",
23 ]
24 }
25
26 # GYP version: mojo.gyp:mojo_environment_chromium_impl
27 component("chromium_impl") {
28 output_name = "mojo_environment_impl"
29 visibility = "//mojo/*"
30
31 sources = [
32 "default_async_waiter_impl.cc",
33 "default_async_waiter_impl.h",
34 "default_logger_impl.cc",
35 "default_logger_impl.h",
36 ]
37
38 defines = [
39 "MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION",
40 ]
41
42 deps = [
43 "//base", 21 "//base",
44 "//base/third_party/dynamic_annotations", 22 "//base/third_party/dynamic_annotations",
45 "//mojo/common", 23 "//mojo/common",
46 ] 24 ]
47 } 25 }
OLDNEW
« no previous file with comments | « mojo/common/mojo_common_export.h ('k') | mojo/environment/default_async_waiter_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698