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

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

Issue 755143005: gn format // regressions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//build/module_args/v8.gni") 7 import("//build/module_args/v8.gni")
8 8
9 content_tests_gypi_values = 9 content_tests_gypi_values =
10 exec_script("//build/gypi_to_gn.py", 10 exec_script("//build/gypi_to_gn.py",
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 deps += [ "//third_party/iaccessible2" ] 123 deps += [ "//third_party/iaccessible2" ]
124 } 124 }
125 125
126 if (!is_android && !is_ios) { 126 if (!is_android && !is_ios) {
127 deps += [ "//third_party/libvpx" ] 127 deps += [ "//third_party/libvpx" ]
128 } 128 }
129 129
130 if (is_android) { 130 if (is_android) {
131 deps += [ 131 deps += [
132 "//ui/android", 132 "//ui/android",
133 "//ui/shell_dialogs" 133 "//ui/shell_dialogs",
134 ] 134 ]
135 } 135 }
136 136
137 if (is_win) { 137 if (is_win) {
138 deps += [ "//sandbox" ] 138 deps += [ "//sandbox" ]
139 } 139 }
140 } else { # is_ios 140 } else { # is_ios
141 sources = [ 141 sources = [
142 "public/test/content_test_suite_base.cc", 142 "public/test/content_test_suite_base.cc",
143 "public/test/mock_notification_observer.cc", 143 "public/test/mock_notification_observer.cc",
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 186
187 generate_jni("jni") { 187 generate_jni("jni") {
188 sources = [ 188 sources = [
189 "../public/test/android/javatests/src/org/chromium/content/browser/test/ NestedSystemMessageHandler.java", 189 "../public/test/android/javatests/src/org/chromium/content/browser/test/ NestedSystemMessageHandler.java",
190 ] 190 ]
191 jni_package = "content/public/test" 191 jni_package = "content/public/test"
192 } 192 }
193 } 193 }
194 } # !is_ios 194 } # !is_ios
195 # TODO(GYP): Unit test targets 195 # TODO(GYP): Unit test targets
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698