| 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 import("//content/utility/utility.gni") |
| 6 |
| 5 source_set("utility") { | 7 source_set("utility") { |
| 6 # Only the public target should depend on this. All other targets (even | 8 # Only the public target should depend on this. All other targets (even |
| 7 # internal content ones) should depend on the public one. | 9 # internal content ones) should depend on the public one. |
| 8 visibility = [ "//content/public/utility:utility_sources" ] | 10 visibility = [ "//content/public/utility:utility_sources" ] |
| 9 | 11 |
| 10 sources = [ | 12 sources = |
| 11 "in_process_utility_thread.cc", | 13 rebase_path(content_utility_gypi_values.utility_sources, ".", "//content") |
| 12 "in_process_utility_thread.h", | |
| 13 "utility_blink_platform_impl.cc", | |
| 14 "utility_blink_platform_impl.h", | |
| 15 "utility_main.cc", | |
| 16 "utility_thread_impl.cc", | |
| 17 "utility_thread_impl.h", | |
| 18 "webthread_impl_for_utility_thread.cc", | |
| 19 "webthread_impl_for_utility_thread.h", | |
| 20 ] | |
| 21 | 14 |
| 22 configs += [ "//content:content_implementation" ] | 15 configs += [ "//content:content_implementation" ] |
| 23 | 16 |
| 24 deps = [ | 17 deps = [ |
| 25 "//base", | 18 "//base", |
| 26 "//content:export", | 19 "//content:export", |
| 27 "//content/public/child:child_sources", | 20 "//content/public/child:child_sources", |
| 28 "//content/public/common:common_sources", | 21 "//content/public/common:common_sources", |
| 29 "//courgette:courgette_lib", | 22 "//courgette:courgette_lib", |
| 30 "//third_party/WebKit/public:blink_headers", | 23 "//third_party/WebKit/public:blink_headers", |
| 31 "//third_party/mojo/src/mojo/public/interfaces/application", | |
| 32 ] | 24 ] |
| 33 } | 25 } |
| OLD | NEW |