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

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

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

Powered by Google App Engine
This is Rietveld 408576698