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