| 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 static_library("child") { | 5 static_library("child") { |
| 6 sources = [ | 6 sources = [ |
| 7 "child_profiling.cc", |
| 8 "child_profiling.h", |
| 7 "pdf_child_init.cc", | 9 "pdf_child_init.cc", |
| 8 "pdf_child_init.h", | 10 "pdf_child_init.h", |
| 9 "v8_breakpad_support_win.cc", | 11 "v8_breakpad_support_win.cc", |
| 10 "v8_breakpad_support_win.h", | 12 "v8_breakpad_support_win.h", |
| 11 ] | 13 ] |
| 12 | 14 |
| 13 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 15 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 14 | 16 |
| 15 deps = [ | 17 deps = [ |
| 16 "//base", | 18 "//base", |
| 17 "//content/public/child", | 19 "//content/public/child", |
| 18 "//gin", | 20 "//gin", |
| 21 "//v8", |
| 19 ] | 22 ] |
| 20 } | 23 } |
| OLD | NEW |