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

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

Issue 599283003: Make gn check //mojo/public/* pass (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « mojo/public/cpp/bindings/tests/BUILD.gn ('k') | mojo/public/cpp/environment/tests/BUILD.gn » ('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 source_set("environment") {
6 sources = [
7 "logging.h",
8 "environment.h",
9 ]
10
11 public_deps = [ "//mojo/public/c/environment" ]
12
13 deps = [ "//mojo/public/cpp/system" ]
14 }
15
5 source_set("standalone") { 16 source_set("standalone") {
6 sources = [ 17 sources = [
7 "../c/environment/async_waiter.h",
8 "../c/environment/logger.h",
9 "environment.h",
10 "lib/default_async_waiter.cc", 18 "lib/default_async_waiter.cc",
11 "lib/default_async_waiter.h", 19 "lib/default_async_waiter.h",
12 "lib/default_logger.cc", 20 "lib/default_logger.cc",
13 "lib/default_logger.h", 21 "lib/default_logger.h",
14 "lib/environment.cc", 22 "lib/environment.cc",
15 "lib/logging.cc", 23 "lib/logging.cc",
16 "logging.h", 24 ]
25
26 public_deps = [ ":environment" ]
27
28 deps = [
29 "//mojo/public/c/environment",
30 "//mojo/public/cpp/utility",
17 ] 31 ]
18 } 32 }
OLDNEW
« no previous file with comments | « mojo/public/cpp/bindings/tests/BUILD.gn ('k') | mojo/public/cpp/environment/tests/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698