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

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

Issue 2656443002: Use chrome::kChromeVersion in installer::GetModulePath(). (Closed)
Patch Set: data 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
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 3356 matching lines...) Expand 10 before | Expand all | Expand 10 after
3367 "../browser/ui/website_settings/mock_permission_prompt_factory.h", 3367 "../browser/ui/website_settings/mock_permission_prompt_factory.h",
3368 "../browser/ui/website_settings/website_settings_unittest.cc", 3368 "../browser/ui/website_settings/website_settings_unittest.cc",
3369 "../browser/ui/webui/browsing_history_handler_unittest.cc", 3369 "../browser/ui/webui/browsing_history_handler_unittest.cc",
3370 "../browser/ui/webui/fileicon_source_unittest.cc", 3370 "../browser/ui/webui/fileicon_source_unittest.cc",
3371 "../browser/ui/webui/local_state/local_state_ui_unittest.cc", 3371 "../browser/ui/webui/local_state/local_state_ui_unittest.cc",
3372 "../browser/ui/webui/log_web_ui_url_unittest.cc", 3372 "../browser/ui/webui/log_web_ui_url_unittest.cc",
3373 "../browser/update_client/chrome_update_query_params_delegate_unittest.cc", 3373 "../browser/update_client/chrome_update_query_params_delegate_unittest.cc",
3374 "../browser/webshare/share_service_impl_unittest.cc", 3374 "../browser/webshare/share_service_impl_unittest.cc",
3375 "../browser/win/chrome_elf_init_unittest.cc", 3375 "../browser/win/chrome_elf_init_unittest.cc",
3376 "../browser/win/enumerate_modules_model_unittest.cc", 3376 "../browser/win/enumerate_modules_model_unittest.cc",
3377 "../common/chrome_constants_win_unittest.cc",
3377 "../common/chrome_content_client_unittest.cc", 3378 "../common/chrome_content_client_unittest.cc",
3378 "../common/chrome_paths_unittest.cc", 3379 "../common/chrome_paths_unittest.cc",
3379 "../common/component_flash_hint_file_linux_unittest.cc", 3380 "../common/component_flash_hint_file_linux_unittest.cc",
3380 "../common/conflicts/module_watcher_win_unittest.cc", 3381 "../common/conflicts/module_watcher_win_unittest.cc",
3381 "../common/crash_keys_unittest.cc", 3382 "../common/crash_keys_unittest.cc",
3382 "../common/ini_parser_unittest.cc", 3383 "../common/ini_parser_unittest.cc",
3383 "../common/mac/cfbundle_blocker_unittest.mm", 3384 "../common/mac/cfbundle_blocker_unittest.mm",
3384 "../common/mac/mock_launchd.cc", 3385 "../common/mac/mock_launchd.cc",
3385 "../common/mac/mock_launchd.h", 3386 "../common/mac/mock_launchd.h",
3386 "../common/origin_trials/chrome_origin_trial_policy_unittest.cc", 3387 "../common/origin_trials/chrome_origin_trial_policy_unittest.cc",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
3444 if (is_android || is_linux || is_win) { 3445 if (is_android || is_linux || is_win) {
3445 data += [ 3446 data += [
3446 "$root_out_dir/chrome_100_percent.pak", 3447 "$root_out_dir/chrome_100_percent.pak",
3447 "$root_out_dir/locales/en-US.pak", 3448 "$root_out_dir/locales/en-US.pak",
3448 "$root_out_dir/resources.pak", 3449 "$root_out_dir/resources.pak",
3449 ] 3450 ]
3450 } 3451 }
3451 if (is_linux || is_win) { 3452 if (is_linux || is_win) {
3452 data += [ "$root_out_dir/chrome_200_percent.pak" ] 3453 data += [ "$root_out_dir/chrome_200_percent.pak" ]
3453 } 3454 }
3455 if (is_win) {
3456 data_deps = [
3457 "//chrome:chrome_initial",
3458 ]
3459 data += [ "$root_out_dir/chrome.exe" ]
3460 }
3454 3461
3455 defines = [] 3462 defines = []
3456 3463
3457 deps = [ 3464 deps = [
3458 # NOTE: New dependencies should generally be added in the OS!="ios" 3465 # NOTE: New dependencies should generally be added in the OS!="ios"
3459 # dependencies block below, rather than here. 3466 # dependencies block below, rather than here.
3460 # Unit tests should only depend on: 3467 # Unit tests should only depend on:
3461 # 1) everything that the chrome binaries depend on: 3468 # 1) everything that the chrome binaries depend on:
3462 "//chrome:browser_dependencies", 3469 "//chrome:browser_dependencies",
3463 "//chrome:child_dependencies", 3470 "//chrome:child_dependencies",
(...skipping 1686 matching lines...) Expand 10 before | Expand all | Expand 10 after
5150 } 5157 }
5151 5158
5152 if (is_win) { 5159 if (is_win) {
5153 loadable_module("conflicts_dll") { 5160 loadable_module("conflicts_dll") {
5154 testonly = true 5161 testonly = true
5155 sources = [ 5162 sources = [
5156 "conflicts/conflicts_dll.cc", 5163 "conflicts/conflicts_dll.cc",
5157 ] 5164 ]
5158 } 5165 }
5159 } 5166 }
OLDNEW
« chrome/common/chrome_constants_win_unittest.cc ('K') | « 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