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

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

Issue 1841863002: Update monet. (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 4 years, 8 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 # GYP version: mojo_base.gyp:mojo_environment_chromium
6 source_set("chromium") { 5 source_set("chromium") {
7 output_name = "mojo_environment_chromium"
8
9 sources = [ 6 sources = [
7 "default_async_waiter.cc",
8 "default_async_waiter.h",
9 "default_logger.cc",
10 "default_logger.h",
10 "environment.cc", 11 "environment.cc",
11 12
12 # TODO(vtl): This is kind of ugly. (See TODO in logging.h.) 13 # TODO(vtl): This is kind of ugly. (See TODO in logging.h.)
13 "//third_party/mojo/src/mojo/public/cpp/environment/async_waiter.h", 14 "//third_party/mojo/src/mojo/public/cpp/environment/async_waiter.h",
14 "//third_party/mojo/src/mojo/public/cpp/environment/lib/async_waiter.cc", 15 "//third_party/mojo/src/mojo/public/cpp/environment/lib/async_waiter.cc",
15 "//third_party/mojo/src/mojo/public/cpp/environment/lib/logging.cc", 16 "//third_party/mojo/src/mojo/public/cpp/environment/lib/logging.cc",
16 "//third_party/mojo/src/mojo/public/cpp/environment/lib/scoped_task_tracking .cc",
17 "//third_party/mojo/src/mojo/public/cpp/environment/lib/scoped_task_tracking .h",
18 "//third_party/mojo/src/mojo/public/cpp/environment/logging.h", 17 "//third_party/mojo/src/mojo/public/cpp/environment/logging.h",
19 "//third_party/mojo/src/mojo/public/cpp/environment/task_tracker.h",
20 ]
21
22 public_deps = [
23 ":chromium_impl",
24 ] 18 ]
25 19
26 deps = [ 20 deps = [
21 "//base",
22 "//base/third_party/dynamic_annotations",
23 "//mojo/common",
24 "//mojo/message_pump",
27 "//third_party/mojo/src/mojo/public/c/environment", 25 "//third_party/mojo/src/mojo/public/c/environment",
28 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", 26 "//third_party/mojo/src/mojo/public/cpp/bindings:callback",
29 "//third_party/mojo/src/mojo/public/cpp/environment", 27 "//third_party/mojo/src/mojo/public/cpp/environment",
30 "//third_party/mojo/src/mojo/public/cpp/system", 28 "//third_party/mojo/src/mojo/public/cpp/system",
31 ] 29 ]
32 } 30 }
33
34 # GYP version: mojo_base.gyp:mojo_environment_chromium_impl
35 component("chromium_impl") {
36 output_name = "mojo_environment_impl"
37 visibility = [ "//mojo/*" ]
38
39 sources = [
40 "default_async_waiter_impl.cc",
41 "default_async_waiter_impl.h",
42 "default_logger_impl.cc",
43 "default_logger_impl.h",
44 "default_run_loop_impl.cc",
45 "default_run_loop_impl.h",
46 "default_task_tracker_impl.cc",
47 "default_task_tracker_impl.h",
48 ]
49
50 defines = [ "MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION" ]
51
52 public_configs =
53 [ "//third_party/mojo/src/mojo/public/build/config:mojo_sdk" ]
54
55 deps = [
56 "//base",
57 "//base/third_party/dynamic_annotations",
58 "//mojo/common:common_base",
59 "//third_party/mojo/src/mojo/public/c/environment",
60 ]
61 }
OLDNEW
« no previous file with comments | « mojo/data_pipe_utils/data_pipe_utils_unittest.cc ('k') | mojo/environment/default_async_waiter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698