| 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("//ppapi/features/features.gni") | 5 import("//ppapi/features/features.gni") |
| 6 | 6 |
| 7 # See //content/BUILD.gn for how this works. | 7 # See //content/BUILD.gn for how this works. |
| 8 group("child") { | 8 group("child") { |
| 9 if (is_component_build) { | 9 if (is_component_build) { |
| 10 public_deps = [ | 10 public_deps = [ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 visibility = [ "//content/*" ] | 28 visibility = [ "//content/*" ] |
| 29 | 29 |
| 30 sources = [ | 30 sources = [ |
| 31 "child_process_sandbox_support_linux.h", | 31 "child_process_sandbox_support_linux.h", |
| 32 "child_thread.h", | 32 "child_thread.h", |
| 33 "fixed_received_data.cc", | 33 "fixed_received_data.cc", |
| 34 "fixed_received_data.h", | 34 "fixed_received_data.h", |
| 35 "image_decoder_utils.h", | 35 "image_decoder_utils.h", |
| 36 "request_peer.h", | 36 "request_peer.h", |
| 37 "resource_dispatcher_delegate.h", | 37 "resource_dispatcher_delegate.h", |
| 38 "url_loader_throttle.h", |
| 38 "v8_value_converter.h", | 39 "v8_value_converter.h", |
| 39 "worker_thread.h", | 40 "worker_thread.h", |
| 40 ] | 41 ] |
| 41 | 42 |
| 42 configs += [ | 43 configs += [ |
| 43 "//build/config/compiler:wexit_time_destructors", | 44 "//build/config/compiler:wexit_time_destructors", |
| 44 "//content:content_implementation", | 45 "//content:content_implementation", |
| 45 ] | 46 ] |
| 46 | 47 |
| 47 deps = [ | 48 deps = [ |
| 48 "//content/child", # Must not be public_deps! | 49 "//content/child", # Must not be public_deps! |
| 49 "//content/public/common:common_sources", | 50 "//content/public/common:common_sources", |
| 50 "//gin", | 51 "//gin", |
| 51 "//ppapi/c", | 52 "//ppapi/c", |
| 52 ] | 53 ] |
| 53 | 54 |
| 54 allow_circular_includes_from = [ | 55 allow_circular_includes_from = [ |
| 55 # This target is a pair with content/child. They always go together and | 56 # This target is a pair with content/child. They always go together and |
| 56 # include headers from each other. | 57 # include headers from each other. |
| 57 "//content/child", | 58 "//content/child", |
| 58 ] | 59 ] |
| 59 } | 60 } |
| OLD | NEW |