| OLD | NEW |
| 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 = [ | 13 deps = [ |
| 14 "//components/version_info:generate_version_info", | 14 "//components/version_info:generate_version_info", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 public_deps = [ | 17 public_deps = [ |
| 18 "//chrome_elf:nt_registry", | 18 "//chrome_elf:nt_registry", |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 sources = [ | 21 sources = [ |
| 22 "install_constants.h", | 22 "install_constants.h", |
| 23 "install_details.cc", | 23 "install_details.cc", |
| 24 "install_details.h", | 24 "install_details.h", |
| 25 "install_modes.cc", | 25 "install_modes.cc", |
| 26 "install_modes.h", | 26 "install_modes.h", |
| 27 "install_util.cc", | 27 "install_util.cc", |
| 28 "install_util.h", | 28 "install_util.h", |
| 29 "policy_path_parser.cc", | |
| 30 "policy_path_parser.h", | |
| 31 "product_install_details.cc", | 29 "product_install_details.cc", |
| 32 "product_install_details.h", | 30 "product_install_details.h", |
| 33 "user_data_dir.cc", | |
| 34 "user_data_dir.h", | |
| 35 ] | 31 ] |
| 36 | 32 |
| 37 if (is_chrome_branded) { | 33 if (is_chrome_branded) { |
| 38 sources += [ | 34 sources += [ |
| 39 "google_chrome_install_modes.cc", | 35 "google_chrome_install_modes.cc", |
| 40 "google_chrome_install_modes.h", | 36 "google_chrome_install_modes.h", |
| 41 ] | 37 ] |
| 42 } else { | 38 } else { |
| 43 sources += [ | 39 sources += [ |
| 44 "chromium_install_modes.cc", | 40 "chromium_install_modes.cc", |
| 45 "chromium_install_modes.h", | 41 "chromium_install_modes.h", |
| 46 ] | 42 ] |
| 47 } | 43 } |
| 48 | 44 |
| 49 libs = [ "kernel32.lib" ] | 45 libs = [ "kernel32.lib" ] |
| 50 | 46 |
| 51 configs += [ | 47 configs += [ |
| 52 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 48 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 53 "//build/config/compiler:no_size_t_to_int_warning", | 49 "//build/config/compiler:no_size_t_to_int_warning", |
| 54 ] | 50 ] |
| 55 } | 51 } |
| 56 | 52 |
| 57 test("install_static_unittests") { | 53 test("install_static_unittests") { |
| 58 output_name = "install_static_unittests" | 54 output_name = "install_static_unittests" |
| 59 sources = [ | 55 sources = [ |
| 60 "install_details_unittest.cc", | 56 "install_details_unittest.cc", |
| 61 "install_modes_unittest.cc", | 57 "install_modes_unittest.cc", |
| 62 "install_util_unittest.cc", | 58 "install_util_unittest.cc", |
| 63 "product_install_details_unittest.cc", | 59 "product_install_details_unittest.cc", |
| 64 "user_data_dir_win_unittest.cc", | |
| 65 ] | 60 ] |
| 66 include_dirs = [ "$target_gen_dir" ] | 61 include_dirs = [ "$target_gen_dir" ] |
| 67 deps = [ | 62 deps = [ |
| 68 "//base", | 63 "//base", |
| 69 "//base/test:run_all_unittests", | 64 "//base/test:run_all_unittests", |
| 70 "//base/test:test_support", | 65 "//base/test:test_support", |
| 71 "//chrome/install_static:install_static_util", | 66 "//chrome/install_static:install_static_util", |
| 72 "//testing/gmock", | 67 "//testing/gmock", |
| 73 "//testing/gtest", | 68 "//testing/gtest", |
| 74 ] | 69 ] |
| 75 } | 70 } |
| OLD | NEW |