Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: chrome/child/BUILD.gn

Issue 2627753004: Move gin and v8 portion of profiling to child from common (Closed)
Patch Set: revert gin removal for now Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698