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