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

Side by Side Diff: components/BUILD.gn

Issue 1100003006: Certificate Transparency: Fetching of Signed Tree Heads (DRAFT) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revised design, addressed some comments Created 5 years, 6 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 # Collection of all components. You wouldn't link to this, but this is rather 10 # Collection of all components. You wouldn't link to this, but this is rather
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 "//components/visitedlink/common", # Blocked on content. 221 "//components/visitedlink/common", # Blocked on content.
222 "//components/visitedlink/renderer", # Blocked on blink 222 "//components/visitedlink/renderer", # Blocked on blink
223 "//components/web_cache/browser", # Blocked on content and blink. 223 "//components/web_cache/browser", # Blocked on content and blink.
224 "//components/web_cache/renderer", # Blocked on content and blink. 224 "//components/web_cache/renderer", # Blocked on content and blink.
225 "//components/web_modal", # Blocked on content. 225 "//components/web_modal", # Blocked on content.
226 ] 226 ]
227 } 227 }
228 228
229 if (!is_ios && !is_android) { 229 if (!is_ios && !is_android) {
230 deps += [ 230 deps += [
231 "//components/certificate_transparency",
231 "//components/copresence", 232 "//components/copresence",
232 "//components/storage_monitor", 233 "//components/storage_monitor",
233 ] 234 ]
234 } 235 }
235 236
236 if (!is_ios) { 237 if (!is_ios) {
237 deps += [ 238 deps += [
238 "//components/app_modal", 239 "//components/app_modal",
239 "//components/browsing_data", 240 "//components/browsing_data",
240 "//components/guest_view/browser", 241 "//components/guest_view/browser",
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 "//content/test:test_support", 391 "//content/test:test_support",
391 "//device/bluetooth", 392 "//device/bluetooth",
392 "//testing/gmock", 393 "//testing/gmock",
393 "//testing/gtest", 394 "//testing/gtest",
394 "//ui/base", 395 "//ui/base",
395 ] 396 ]
396 397
397 data_deps = [ ":components_tests_pak" ] 398 data_deps = [ ":components_tests_pak" ]
398 399
399 if (is_android) { 400 if (is_android) {
400 sources += [ 401 sources += [ "test/android/browsertests_apk/components_browser_tests_jni_onl oad.cc" ]
401 "test/android/browsertests_apk/components_browser_tests_jni_onload.cc",
402 ]
403 sources -= [ "autofill/content/browser/risk/fingerprint_browsertest.cc" ] 402 sources -= [ "autofill/content/browser/risk/fingerprint_browsertest.cc" ]
404 deps += [ "//testing/android/native_test:native_test_support" ] 403 deps += [ "//testing/android/native_test:native_test_support" ]
405 use_launcher = false 404 use_launcher = false
406 isolate_file = "components_browsertests.isolate" 405 isolate_file = "components_browsertests.isolate"
407 } 406 }
408 407
409 if (is_linux) { 408 if (is_linux) {
410 # content_extractor_browsertest is a standalone content extraction tool buil t as 409 # content_extractor_browsertest is a standalone content extraction tool buil t as
411 # a MANUAL component_browsertest. 410 # a MANUAL component_browsertest.
412 sources += [ "dom_distiller/standalone/content_extractor_browsertest.cc" ] 411 sources += [ "dom_distiller/standalone/content_extractor_browsertest.cc" ]
(...skipping 15 matching lines...) Expand all
428 427
429 deps = [ 428 deps = [
430 "//base", 429 "//base",
431 "//base/test:test_support_perf", 430 "//base/test:test_support_perf",
432 "//testing/gtest", 431 "//testing/gtest",
433 "//testing/perf", 432 "//testing/perf",
434 "//content/test:test_support", 433 "//content/test:test_support",
435 "//components/visitedlink/browser", 434 "//components/visitedlink/browser",
436 ] 435 ]
437 } 436 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698