| OLD | NEW |
| 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 import("//chrome/process_version_rc_template.gni") | 5 import("//chrome/process_version_rc_template.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 assert(is_win) | 8 assert(is_win) |
| 9 | 9 |
| 10 shared_library("gcapi") { | 10 shared_library("gcapi") { |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 ] | 58 ] |
| 59 } | 59 } |
| 60 | 60 |
| 61 test("gcapi_test") { | 61 test("gcapi_test") { |
| 62 sources = [ | 62 sources = [ |
| 63 "gcapi_last_run_test.cc", | 63 "gcapi_last_run_test.cc", |
| 64 "gcapi_omaha_experiment_test.cc", | 64 "gcapi_omaha_experiment_test.cc", |
| 65 "gcapi_reactivation_test.cc", | 65 "gcapi_reactivation_test.cc", |
| 66 "gcapi_test.cc", | 66 "gcapi_test.cc", |
| 67 "gcapi_test.rc", | 67 "gcapi_test.rc", |
| 68 "gcapi_test_registry_overrider.cc", | |
| 69 "gcapi_test_registry_overrider.h", | |
| 70 "resource.h", | 68 "resource.h", |
| 71 ] | 69 ] |
| 72 | 70 |
| 73 deps = [ | 71 deps = [ |
| 74 ":lib", | 72 ":lib", |
| 75 "//base/test:test_support", | 73 "//base/test:test_support", |
| 76 "//chrome/install_static:install_static_util", | 74 "//chrome/install_static:install_static_util", |
| 77 "//chrome/installer/util:with_no_strings", | 75 "//chrome/installer/util:with_no_strings", |
| 78 "//components/variations", | 76 "//components/variations", |
| 79 "//testing/gtest", | 77 "//testing/gtest", |
| 80 ] | 78 ] |
| 81 | 79 |
| 82 data_deps = [ | 80 data_deps = [ |
| 83 ":gcapi", # Runtime dependency on this DLL. | 81 ":gcapi", # Runtime dependency on this DLL. |
| 84 ] | 82 ] |
| 85 } | 83 } |
| OLD | NEW |