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

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

Issue 2656443002: Use chrome::kChromeVersion in installer::GetModulePath(). (Closed)
Patch Set: rebase Created 3 years, 10 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
« no previous file with comments | « chrome/installer/util/module_util_win.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 3359 matching lines...) Expand 10 before | Expand all | Expand 10 after
3370 "../browser/ui/website_settings/website_settings_unittest.cc", 3370 "../browser/ui/website_settings/website_settings_unittest.cc",
3371 "../browser/ui/webui/browsing_history_handler_unittest.cc", 3371 "../browser/ui/webui/browsing_history_handler_unittest.cc",
3372 "../browser/ui/webui/fileicon_source_unittest.cc", 3372 "../browser/ui/webui/fileicon_source_unittest.cc",
3373 "../browser/ui/webui/local_state/local_state_ui_unittest.cc", 3373 "../browser/ui/webui/local_state/local_state_ui_unittest.cc",
3374 "../browser/ui/webui/log_web_ui_url_unittest.cc", 3374 "../browser/ui/webui/log_web_ui_url_unittest.cc",
3375 "../browser/update_client/chrome_update_query_params_delegate_unittest.cc", 3375 "../browser/update_client/chrome_update_query_params_delegate_unittest.cc",
3376 "../browser/webshare/share_service_impl_unittest.cc", 3376 "../browser/webshare/share_service_impl_unittest.cc",
3377 "../browser/webshare/share_target_pref_helper_unittest.cc", 3377 "../browser/webshare/share_target_pref_helper_unittest.cc",
3378 "../browser/win/chrome_elf_init_unittest.cc", 3378 "../browser/win/chrome_elf_init_unittest.cc",
3379 "../browser/win/enumerate_modules_model_unittest.cc", 3379 "../browser/win/enumerate_modules_model_unittest.cc",
3380 "../common/chrome_constants_win_unittest.cc",
3380 "../common/chrome_content_client_unittest.cc", 3381 "../common/chrome_content_client_unittest.cc",
3381 "../common/chrome_paths_unittest.cc", 3382 "../common/chrome_paths_unittest.cc",
3382 "../common/component_flash_hint_file_linux_unittest.cc", 3383 "../common/component_flash_hint_file_linux_unittest.cc",
3383 "../common/conflicts/module_watcher_win_unittest.cc", 3384 "../common/conflicts/module_watcher_win_unittest.cc",
3384 "../common/crash_keys_unittest.cc", 3385 "../common/crash_keys_unittest.cc",
3385 "../common/ini_parser_unittest.cc", 3386 "../common/ini_parser_unittest.cc",
3386 "../common/mac/cfbundle_blocker_unittest.mm", 3387 "../common/mac/cfbundle_blocker_unittest.mm",
3387 "../common/mac/mock_launchd.cc", 3388 "../common/mac/mock_launchd.cc",
3388 "../common/mac/mock_launchd.h", 3389 "../common/mac/mock_launchd.h",
3389 "../common/origin_trials/chrome_origin_trial_policy_unittest.cc", 3390 "../common/origin_trials/chrome_origin_trial_policy_unittest.cc",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
3447 if (is_android || is_linux || is_win) { 3448 if (is_android || is_linux || is_win) {
3448 data += [ 3449 data += [
3449 "$root_out_dir/chrome_100_percent.pak", 3450 "$root_out_dir/chrome_100_percent.pak",
3450 "$root_out_dir/locales/en-US.pak", 3451 "$root_out_dir/locales/en-US.pak",
3451 "$root_out_dir/resources.pak", 3452 "$root_out_dir/resources.pak",
3452 ] 3453 ]
3453 } 3454 }
3454 if (is_linux || is_win) { 3455 if (is_linux || is_win) {
3455 data += [ "$root_out_dir/chrome_200_percent.pak" ] 3456 data += [ "$root_out_dir/chrome_200_percent.pak" ]
3456 } 3457 }
3458 if (is_win) {
3459 data_deps = [
3460 "//chrome:chrome_initial",
3461 ]
3462 data += [ "$root_out_dir/chrome.exe" ]
3463 }
3457 3464
3458 defines = [] 3465 defines = []
3459 3466
3460 deps = [ 3467 deps = [
3461 # NOTE: New dependencies should generally be added in the OS!="ios" 3468 # NOTE: New dependencies should generally be added in the OS!="ios"
3462 # dependencies block below, rather than here. 3469 # dependencies block below, rather than here.
3463 # Unit tests should only depend on: 3470 # Unit tests should only depend on:
3464 # 1) everything that the chrome binaries depend on: 3471 # 1) everything that the chrome binaries depend on:
3465 "//chrome:browser_dependencies", 3472 "//chrome:browser_dependencies",
3466 "//chrome:child_dependencies", 3473 "//chrome:child_dependencies",
(...skipping 1686 matching lines...) Expand 10 before | Expand all | Expand 10 after
5153 } 5160 }
5154 5161
5155 if (is_win) { 5162 if (is_win) {
5156 loadable_module("conflicts_dll") { 5163 loadable_module("conflicts_dll") {
5157 testonly = true 5164 testonly = true
5158 sources = [ 5165 sources = [
5159 "conflicts/conflicts_dll.cc", 5166 "conflicts/conflicts_dll.cc",
5160 ] 5167 ]
5161 } 5168 }
5162 } 5169 }
OLDNEW
« no previous file with comments | « chrome/installer/util/module_util_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698