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

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

Issue 544423002: Convert GN visibility variables to lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge 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
« no previous file with comments | « media/cast/test/proto/BUILD.gn ('k') | mojo/public/tools/bindings/mojom.gni » ('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_base.gyp:mojo_environment_chromium 5 # GYP version: mojo_base.gyp:mojo_environment_chromium
6 source_set("chromium") { 6 source_set("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",
11 # TODO(vtl): This is kind of ugly. (See TODO in logging.h.) 11 # TODO(vtl): This is kind of ugly. (See TODO in logging.h.)
12 "../public/cpp/environment/logging.h", 12 "../public/cpp/environment/logging.h",
13 "../public/cpp/environment/lib/logging.cc", 13 "../public/cpp/environment/lib/logging.cc",
14 ] 14 ]
15 15
16 deps = [ 16 deps = [
17 ":chromium_impl", 17 ":chromium_impl",
18 ] 18 ]
19 19
20 forward_dependent_configs_from = [ 20 forward_dependent_configs_from = [
21 ":chromium_impl", 21 ":chromium_impl",
22 ] 22 ]
23 } 23 }
24 24
25 # GYP version: mojo_base.gyp:mojo_environment_chromium_impl 25 # GYP version: mojo_base.gyp:mojo_environment_chromium_impl
26 component("chromium_impl") { 26 component("chromium_impl") {
27 output_name = "mojo_environment_impl" 27 output_name = "mojo_environment_impl"
28 visibility = "//mojo/*" 28 visibility = [ "//mojo/*" ]
29 29
30 sources = [ 30 sources = [
31 "default_async_waiter_impl.cc", 31 "default_async_waiter_impl.cc",
32 "default_async_waiter_impl.h", 32 "default_async_waiter_impl.h",
33 "default_logger_impl.cc", 33 "default_logger_impl.cc",
34 "default_logger_impl.h", 34 "default_logger_impl.h",
35 ] 35 ]
36 36
37 defines = [ 37 defines = [
38 "MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION", 38 "MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION",
39 ] 39 ]
40 40
41 deps = [ 41 deps = [
42 "//base", 42 "//base",
43 "//base/third_party/dynamic_annotations", 43 "//base/third_party/dynamic_annotations",
44 "//mojo/common", 44 "//mojo/common",
45 ] 45 ]
46 } 46 }
OLDNEW
« no previous file with comments | « media/cast/test/proto/BUILD.gn ('k') | mojo/public/tools/bindings/mojom.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698