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

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

Issue 2765443004: AndroidOverlay implementation using Dialog. (Closed)
Patch Set: make findbugs happy Created 3 years, 8 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/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 configs += [ 229 configs += [
230 "//build/config:precompiled_headers", 230 "//build/config:precompiled_headers",
231 "//v8:external_startup_data", 231 "//v8:external_startup_data",
232 ] 232 ]
233 233
234 public_deps = [ 234 public_deps = [
235 "//content/public/app:both", 235 "//content/public/app:both",
236 "//content/public/browser", 236 "//content/public/browser",
237 "//content/public/common", 237 "//content/public/common",
238 "//ipc", 238 "//ipc",
239 "//media/mojo/clients",
240 "//media/mojo/interfaces",
239 "//third_party/WebKit/public:blink", 241 "//third_party/WebKit/public:blink",
240 "//third_party/WebKit/public:test_support", 242 "//third_party/WebKit/public:test_support",
241 ] 243 ]
242 deps = [ 244 deps = [
243 ":content_test_mojo_bindings", 245 ":content_test_mojo_bindings",
244 "//base/third_party/dynamic_annotations", 246 "//base/third_party/dynamic_annotations",
245 "//cc:test_support", 247 "//cc:test_support",
246 "//cc/blink", 248 "//cc/blink",
247 "//cc/ipc", 249 "//cc/ipc",
248 "//cc/surfaces", 250 "//cc/surfaces",
(...skipping 1599 matching lines...) Expand 10 before | Expand all | Expand 10 after
1848 if (is_android) { 1850 if (is_android) {
1849 deps += [ "//testing/android/native_test:native_test_native_code" ] 1851 deps += [ "//testing/android/native_test:native_test_native_code" ]
1850 } 1852 }
1851 } 1853 }
1852 1854
1853 group("fuzzers") { 1855 group("fuzzers") {
1854 deps = [ 1856 deps = [
1855 "//content/test/fuzzer", 1857 "//content/test/fuzzer",
1856 ] 1858 ]
1857 } 1859 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698