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

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

Issue 1904613002: Preparation patch for moving the chrome crashpad integration into chrome_elf. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent Created 4 years, 8 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
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//build/config/chrome_build.gni")
6 import("//testing/test.gni")
7
8 # This file only contains utility functions which can depend on kernel32 and
9 # advapi32.
10 static_library("install_static_util") {
11 deps = [
12 "//base",
13 ]
14
15 if (is_win) {
16 # TODO(GYP) install_static_util on Windows.
17 # This is a bit tricky. It seems that what's currently called
18 # install_static_nacl_win64 should be a different target with a different
19 # name ("installer_static_minimal"?) since it's not strictly the 64-bit
20 # build of that target.
21 sources = [
22 "install_util.cc",
23 "install_util.h",
24 ]
25
26 libs = [
27 "kernel32.lib",
28 "advapi32.lib",
scottmg 2016/04/19 23:27:17 This is allowed?
ananta 2016/04/19 23:42:43 Registry API's are in advapi32.
29 ]
30
31 configs += [
32 "//build/config:precompiled_headers",
33
34 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
35 "//build/config/compiler:no_size_t_to_int_warning",
36 ]
37 }
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698