| 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 "environment.cc", | 11 "environment.cc", |
| 12 "scoped_chromium_init.cc", |
| 13 "scoped_chromium_init.h", |
| 12 | 14 |
| 13 # TODO(vtl): This is kind of ugly. (See TODO in logging.h.) | 15 # TODO(vtl): This is kind of ugly. (See TODO in logging.h.) |
| 14 "../public/cpp/environment/async_waiter.h", | 16 "../public/cpp/environment/async_waiter.h", |
| 15 "../public/cpp/environment/lib/async_waiter.cc", | 17 "../public/cpp/environment/lib/async_waiter.cc", |
| 16 "../public/cpp/environment/lib/logging.cc", | 18 "../public/cpp/environment/lib/logging.cc", |
| 17 "../public/cpp/environment/logging.h", | 19 "../public/cpp/environment/logging.h", |
| 18 ] | 20 ] |
| 19 | 21 |
| 20 deps = [ | 22 deps = [ |
| 21 "//base", | 23 "//base", |
| 22 "//base/third_party/dynamic_annotations", | 24 "//base/third_party/dynamic_annotations", |
| 23 "//mojo/common", | 25 "//mojo/common", |
| 24 "//mojo/message_pump", | 26 "//mojo/message_pump", |
| 25 "//mojo/public/c/environment", | 27 "//mojo/public/c/environment", |
| 26 "//mojo/public/cpp/bindings:callback", | 28 "//mojo/public/cpp/bindings:callback", |
| 27 "//mojo/public/cpp/environment", | 29 "//mojo/public/cpp/environment", |
| 28 "//mojo/public/cpp/system", | 30 "//mojo/public/cpp/system", |
| 29 ] | 31 ] |
| 30 } | 32 } |
| OLD | NEW |