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

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

Issue 2491463002: Revert of Windows install_static refactor. (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « chrome/chrome_watcher/chrome_watcher_main_api.h ('k') | chrome/install_static/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 assert(is_win) 8 assert(is_win)
9 9
10 # This file only contains utility functions which must only depend on kernel32. 10 # This file only contains utility functions which must only depend on kernel32.
11 # Please don't add dependencies on other system libraries. 11 # Please don't add dependencies on other system libraries.
12 static_library("install_static_util") { 12 static_library("install_static_util") {
13 deps = [
14 "//components/version_info:generate_version_info",
15 ]
16
17 public_deps = [ 13 public_deps = [
18 "//chrome_elf:nt_registry", 14 "//chrome_elf:nt_registry",
19 ] 15 ]
20 16
21 sources = [ 17 sources = [
22 "install_constants.h",
23 "install_details.cc",
24 "install_details.h",
25 "install_modes.cc",
26 "install_modes.h",
27 "install_util.cc", 18 "install_util.cc",
28 "install_util.h", 19 "install_util.h",
29 "product_install_details.cc",
30 "product_install_details.h",
31 ] 20 ]
32 21
33 if (is_chrome_branded) {
34 sources += [
35 "google_chrome_install_modes.cc",
36 "google_chrome_install_modes.h",
37 ]
38 } else {
39 sources += [
40 "chromium_install_modes.cc",
41 "chromium_install_modes.h",
42 ]
43 }
44
45 libs = [ "kernel32.lib" ] 22 libs = [ "kernel32.lib" ]
46 23
47 configs += [ 24 configs += [
48 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 25 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
49 "//build/config/compiler:no_size_t_to_int_warning", 26 "//build/config/compiler:no_size_t_to_int_warning",
50 ] 27 ]
51 } 28 }
52 29
53 test("install_static_unittests") { 30 test("install_static_unittests") {
54 output_name = "install_static_unittests" 31 output_name = "install_static_unittests"
55 sources = [ 32 sources = [
56 "install_details_unittest.cc",
57 "install_modes_unittest.cc",
58 "install_util_unittest.cc", 33 "install_util_unittest.cc",
59 "product_install_details_unittest.cc",
60 ] 34 ]
61 include_dirs = [ "$target_gen_dir" ] 35 include_dirs = [ "$target_gen_dir" ]
62 deps = [ 36 deps = [
63 "//base", 37 "//base",
64 "//base/test:run_all_unittests", 38 "//base/test:run_all_unittests",
65 "//base/test:test_support", 39 "//base/test:test_support",
66 "//chrome/install_static:install_static_util", 40 "//chrome/install_static:install_static_util",
67 "//testing/gmock", 41 "//testing/gmock",
68 "//testing/gtest", 42 "//testing/gtest",
69 ] 43 ]
70 } 44 }
OLDNEW
« no previous file with comments | « chrome/chrome_watcher/chrome_watcher_main_api.h ('k') | chrome/install_static/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698