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

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

Issue 2765443004: AndroidOverlay implementation using Dialog. (Closed)
Patch Set: cl feedback - UIAction, nativeInit, weakref Created 3 years, 7 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 configs += [ 215 configs += [
216 "//build/config:precompiled_headers", 216 "//build/config:precompiled_headers",
217 "//v8:external_startup_data", 217 "//v8:external_startup_data",
218 ] 218 ]
219 219
220 public_deps = [ 220 public_deps = [
221 "//content/public/app:both", 221 "//content/public/app:both",
222 "//content/public/browser", 222 "//content/public/browser",
223 "//content/public/common", 223 "//content/public/common",
224 "//ipc", 224 "//ipc",
225 "//media/mojo/clients",
226 "//media/mojo/interfaces",
225 "//third_party/WebKit/public:blink", 227 "//third_party/WebKit/public:blink",
226 "//third_party/WebKit/public:test_support", 228 "//third_party/WebKit/public:test_support",
227 ] 229 ]
228 deps = [ 230 deps = [
229 ":content_test_mojo_bindings", 231 ":content_test_mojo_bindings",
230 "//base/third_party/dynamic_annotations", 232 "//base/third_party/dynamic_annotations",
231 "//cc:test_support", 233 "//cc:test_support",
232 "//cc/blink", 234 "//cc/blink",
233 "//cc/ipc", 235 "//cc/ipc",
234 "//cc/ipc:interfaces", 236 "//cc/ipc:interfaces",
(...skipping 1582 matching lines...) Expand 10 before | Expand all | Expand 10 after
1817 if (is_android) { 1819 if (is_android) {
1818 deps += [ "//testing/android/native_test:native_test_native_code" ] 1820 deps += [ "//testing/android/native_test:native_test_native_code" ]
1819 } 1821 }
1820 } 1822 }
1821 1823
1822 group("fuzzers") { 1824 group("fuzzers") {
1823 deps = [ 1825 deps = [
1824 "//content/test/fuzzer", 1826 "//content/test/fuzzer",
1825 ] 1827 ]
1826 } 1828 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698