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

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

Issue 1765243002: Remove Mojo bindings environment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/async_waiter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 source_set("environment") {
6 sources = [
7 "async_waiter.h",
8 "environment.h",
9 "logging.h",
10 "task_tracker.h",
11 ]
12
13 public_deps = [
14 "//mojo/public/c/environment",
15 ]
16
17 deps = [
18 "//mojo/public/cpp/bindings:callback",
19 "//mojo/public/cpp/system",
20 ]
21 }
22
23 source_set("standalone") {
24 sources = [
25 "lib/async_waiter.cc",
26 "lib/default_async_waiter.cc",
27 "lib/default_async_waiter.h",
28 "lib/default_logger.cc",
29 "lib/default_logger.h",
30 "lib/default_task_tracker.cc",
31 "lib/default_task_tracker.h",
32 "lib/environment.cc",
33 "lib/logging.cc",
34 "lib/scoped_task_tracking.cc",
35 "lib/scoped_task_tracking.h",
36 ]
37
38 public_deps = [
39 ":environment",
40 ]
41
42 deps = [
43 "//mojo/public/c/environment",
44 "//mojo/public/cpp/system",
45 "//mojo/public/cpp/utility",
46 ]
47 }
OLDNEW
« no previous file with comments | « mojo/public/cpp/bindings/tests/BUILD.gn ('k') | mojo/public/cpp/environment/async_waiter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698