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

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
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 deps = [
12 "//mojo/public/c/environment",
13 "//mojo/public/cpp/system",
14 ]
15 }
16
5 source_set("standalone") { 17 source_set("standalone") {
6 sources = [ 18 sources = [
7 "../c/environment/async_waiter.h",
8 "../c/environment/logger.h",
9 "environment.h",
10 "lib/default_async_waiter.cc", 19 "lib/default_async_waiter.cc",
11 "lib/default_async_waiter.h", 20 "lib/default_async_waiter.h",
12 "lib/default_logger.cc", 21 "lib/default_logger.cc",
13 "lib/default_logger.h", 22 "lib/default_logger.h",
14 "lib/environment.cc", 23 "lib/environment.cc",
15 "lib/logging.cc", 24 "lib/logging.cc",
16 "logging.h", 25 ]
26
27 public_deps = [ ":environment" ]
28
29 deps = [
30 "//mojo/public/c/environment",
31 "//mojo/public/cpp/utility",
17 ] 32 ]
18 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698