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

Side by Side Diff: build/secondary/third_party/crashpad/crashpad/snapshot/BUILD.gn

Issue 2149483002: Reduce chrome.exe .text size by 50 KB with static_library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweaking comments Created 4 years, 5 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 source_set("snapshot") { 5 static_library("snapshot") {
6 deps = [ 6 deps = [
7 "../client", 7 "../client",
8 "../compat", 8 "../compat",
9 "../util", 9 "../util",
10 "//base", 10 "//base",
11 ] 11 ]
12 12
13 include_dirs = [ ".." ] 13 include_dirs = [ ".." ]
14 14
15 if (is_win) { 15 if (is_win) {
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 127
128 sources = [ 128 sources = [
129 "api/module_annotations_win.cc", 129 "api/module_annotations_win.cc",
130 "api/module_annotations_win.h", 130 "api/module_annotations_win.h",
131 ] 131 ]
132 } 132 }
133 } else { 133 } else {
134 group("snapshot_api") { 134 group("snapshot_api") {
135 } 135 }
136 } 136 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698