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

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

Issue 1411453004: Componentize internal class FlagsState in flags_ui component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@feature_entry
Patch Set: Fix compilation on Win32 Created 5 years, 1 month 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/chrome_tests.gni") 10 import("//chrome/chrome_tests.gni")
(...skipping 2093 matching lines...) Expand 10 before | Expand all | Expand 10 after
2104 "../common/crash_keys.cc", 2104 "../common/crash_keys.cc",
2105 "../common/crash_keys.h", 2105 "../common/crash_keys.h",
2106 ] 2106 ]
2107 2107
2108 deps = [ 2108 deps = [
2109 ":test_support", 2109 ":test_support",
2110 "//breakpad:client", 2110 "//breakpad:client",
2111 "//chrome/browser", 2111 "//chrome/browser",
2112 "//chrome/child", 2112 "//chrome/child",
2113 "//components/crash/core/common", 2113 "//components/crash/core/common",
2114 "//components/flags_ui:switches",
2114 "//base/test:run_all_unittests", 2115 "//base/test:run_all_unittests",
2115 "//base/test:test_support", 2116 "//base/test:test_support",
2116 ] 2117 ]
2117 if (cld_version == 2) { 2118 if (cld_version == 2) {
2118 # Use whatever CLD2 data access mode that the 2119 # Use whatever CLD2 data access mode that the
2119 # application embedder is using. 2120 # application embedder is using.
2120 deps += [ "//third_party/cld_2:cld2_platform_impl" ] 2121 deps += [ "//third_party/cld_2:cld2_platform_impl" ]
2121 } 2122 }
2122 } 2123 }
2123 2124
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
2201 if (is_android) { 2202 if (is_android) {
2202 android_library("unit_tests_java") { 2203 android_library("unit_tests_java") {
2203 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" 2204 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src"
2204 deps = [ 2205 deps = [
2205 "//base:base_java", 2206 "//base:base_java",
2206 "//chrome/android:chrome_java", 2207 "//chrome/android:chrome_java",
2207 "//content/public/android:content_java", 2208 "//content/public/android:content_java",
2208 ] 2209 ]
2209 } 2210 }
2210 } 2211 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698