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

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: Small nits 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
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 "environment.cc", 10 "environment.cc",
(...skipping 17 matching lines...) Expand all
28 output_name = "mojo_environment_impl" 28 output_name = "mojo_environment_impl"
29 visibility = "//mojo/*" 29 visibility = "//mojo/*"
30 30
31 sources = [ 31 sources = [
32 "default_async_waiter_impl.cc", 32 "default_async_waiter_impl.cc",
33 "default_async_waiter_impl.h", 33 "default_async_waiter_impl.h",
34 "default_logger_impl.cc", 34 "default_logger_impl.cc",
35 "default_logger_impl.h", 35 "default_logger_impl.h",
36 ] 36 ]
37 37
38 defines = [
39 "MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION",
40 ]
41
42 deps = [ 38 deps = [
43 "//base", 39 "//base",
44 "//base/third_party/dynamic_annotations", 40 "//base/third_party/dynamic_annotations",
45 "//mojo/common", 41 "//mojo/common",
46 ] 42 ]
47 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698