| 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("application") { | 5 source_set("application") { |
| 6 sources = [ | 6 sources = [ |
| 7 "application_runner_chromium.cc", | 7 "application_runner_chromium.cc", |
| 8 "application_runner_chromium.h", | 8 "application_runner_chromium.h", |
| 9 "run_application.cc", |
| 9 ] | 10 ] |
| 10 | 11 |
| 11 public_deps = [ | 12 public_deps = [ |
| 12 "//mojo/public/cpp/application", | 13 "//mojo/public/cpp/application", |
| 13 ] | 14 ] |
| 14 deps = [ | 15 deps = [ |
| 15 "//base", | 16 "//base", |
| 17 "//mojo/environment:chromium", |
| 16 "//mojo/message_pump", | 18 "//mojo/message_pump", |
| 17 "//mojo/public/cpp/system", | 19 "//mojo/public/cpp/system", |
| 18 "//mojo/environment:chromium", | |
| 19 ] | 20 ] |
| 20 } | 21 } |
| 21 | 22 |
| 22 source_set("content_handler") { | 23 source_set("content_handler") { |
| 23 sources = [ | 24 sources = [ |
| 24 "content_handler_factory.cc", | 25 "content_handler_factory.cc", |
| 25 "content_handler_factory.h", | 26 "content_handler_factory.h", |
| 26 ] | 27 ] |
| 27 deps = [ | 28 deps = [ |
| 28 ":application", | 29 ":application", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 45 "//mojo/public/cpp/application:test_support", | 46 "//mojo/public/cpp/application:test_support", |
| 46 ] | 47 ] |
| 47 deps = [ | 48 deps = [ |
| 48 "//base", | 49 "//base", |
| 49 "//base/test:test_config", | 50 "//base/test:test_config", |
| 50 "//mojo/environment:chromium", | 51 "//mojo/environment:chromium", |
| 51 "//mojo/public/cpp/application", | 52 "//mojo/public/cpp/application", |
| 52 "//mojo/public/cpp/system", | 53 "//mojo/public/cpp/system", |
| 53 ] | 54 ] |
| 54 } | 55 } |
| OLD | NEW |