| OLD | NEW |
| 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("chromium") { | 5 source_set("chromium") { |
| 6 sources = [ | 6 sources = [ |
| 7 "default_async_waiter.cc", | 7 "default_async_waiter.cc", |
| 8 "default_async_waiter.h", | 8 "default_async_waiter.h", |
| 9 "default_logger.cc", | 9 "default_logger.cc", |
| 10 "default_logger.h", | 10 "default_logger.h", |
| 11 "default_task_tracker.cc", | |
| 12 "default_task_tracker.h", | |
| 13 "environment.cc", | 11 "environment.cc", |
| 14 | 12 |
| 15 # 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.) |
| 16 "../public/cpp/environment/async_waiter.h", | 14 "../public/cpp/environment/async_waiter.h", |
| 17 "../public/cpp/environment/lib/async_waiter.cc", | 15 "../public/cpp/environment/lib/async_waiter.cc", |
| 18 "../public/cpp/environment/lib/logging.cc", | 16 "../public/cpp/environment/lib/logging.cc", |
| 19 "../public/cpp/environment/lib/scoped_task_tracking.cc", | |
| 20 "../public/cpp/environment/lib/scoped_task_tracking.h", | |
| 21 "../public/cpp/environment/logging.h", | 17 "../public/cpp/environment/logging.h", |
| 22 ] | 18 ] |
| 23 | 19 |
| 24 deps = [ | 20 deps = [ |
| 25 "//base", | 21 "//base", |
| 26 "//base/third_party/dynamic_annotations", | 22 "//base/third_party/dynamic_annotations", |
| 27 "//mojo/common", | 23 "//mojo/common", |
| 28 "//mojo/message_pump", | 24 "//mojo/message_pump", |
| 29 "//mojo/public/c/environment", | 25 "//mojo/public/c/environment", |
| 30 "//mojo/public/cpp/bindings:callback", | 26 "//mojo/public/cpp/bindings:callback", |
| 31 "//mojo/public/cpp/environment", | 27 "//mojo/public/cpp/environment", |
| 32 "//mojo/public/cpp/system", | 28 "//mojo/public/cpp/system", |
| 33 ] | 29 ] |
| 34 } | 30 } |
| OLD | NEW |