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

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

Issue 2476573004: Use InstallDetails in installer_util. (Closed)
Patch Set: sync to position 450321 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 5084 matching lines...) Expand 10 before | Expand all | Expand 10 after
5095 5095
5096 public_deps = [ 5096 public_deps = [
5097 ":test_support", 5097 ":test_support",
5098 "//base", 5098 "//base",
5099 "//chrome:resources", 5099 "//chrome:resources",
5100 "//chrome:strings", 5100 "//chrome:strings",
5101 "//chrome/browser", 5101 "//chrome/browser",
5102 "//chrome/common", 5102 "//chrome/common",
5103 "//mojo/edk/test:test_support", 5103 "//mojo/edk/test:test_support",
5104 ] 5104 ]
5105
5106 if (is_win) {
5107 deps = [
5108 "//chrome/install_static/test:test_support",
5109 ]
5110 }
5105 } 5111 }
5106 5112
5107 if (is_android) { 5113 if (is_android) {
5108 android_library("unit_tests_java") { 5114 android_library("unit_tests_java") {
5109 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ] 5115 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ]
5110 deps = [ 5116 deps = [
5111 "//base:base_java", 5117 "//base:base_java",
5112 "//chrome/android:chrome_java", 5118 "//chrome/android:chrome_java",
5113 "//content/public/android:content_java", 5119 "//content/public/android:content_java",
5114 ] 5120 ]
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
5174 } 5180 }
5175 5181
5176 if (is_win) { 5182 if (is_win) {
5177 loadable_module("conflicts_dll") { 5183 loadable_module("conflicts_dll") {
5178 testonly = true 5184 testonly = true
5179 sources = [ 5185 sources = [
5180 "conflicts/conflicts_dll.cc", 5186 "conflicts/conflicts_dll.cc",
5181 ] 5187 ]
5182 } 5188 }
5183 } 5189 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698