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

Side by Side Diff: blimp/engine/BUILD.gn

Issue 1960813002: Fix DCHECK failure and add unittest for BlimpSystemURLContextGetter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//tools/grit/repack.gni") 9 import("//tools/grit/repack.gni")
10 import("//tools/grit/grit_rule.gni") 10 import("//tools/grit/grit_rule.gni")
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 sources = [ 287 sources = [
288 "mojo/blob_channel.mojom", 288 "mojo/blob_channel.mojom",
289 ] 289 ]
290 } 290 }
291 291
292 source_set("app_unit_tests") { 292 source_set("app_unit_tests") {
293 testonly = true 293 testonly = true
294 294
295 sources = [ 295 sources = [
296 "app/blimp_engine_config_unittest.cc", 296 "app/blimp_engine_config_unittest.cc",
297 "app/blimp_system_url_request_context_getter_unittest.cc",
297 "app/settings_manager_unittest.cc", 298 "app/settings_manager_unittest.cc",
298 "app/ui/blimp_screen_unittest.cc", 299 "app/ui/blimp_screen_unittest.cc",
299 ] 300 ]
300 301
301 deps = [ 302 deps = [
302 ":app", 303 ":app",
303 ":app_config", 304 ":app_config",
305 ":app_net",
304 ":app_settings", 306 ":app_settings",
305 ":app_switches", 307 ":app_switches",
306 "//base", 308 "//base",
307 "//base/test:run_all_unittests", 309 "//base/test:run_all_unittests",
308 "//base/test:test_support", 310 "//base/test:test_support",
309 "//blimp/engine:app_ui", 311 "//blimp/engine:app_ui",
312 "//content/test:test_support",
310 "//testing/gmock", 313 "//testing/gmock",
311 "//testing/gtest", 314 "//testing/gtest",
312 "//ui/display", 315 "//ui/display",
313 "//ui/gfx:test_support", 316 "//ui/gfx:test_support",
314 ] 317 ]
315 } 318 }
316 319
317 source_set("feature_unit_tests") { 320 source_set("feature_unit_tests") {
318 testonly = true 321 testonly = true
319 322
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 _rebased_dockerfile, 415 _rebased_dockerfile,
413 "--startup-script", 416 "--startup-script",
414 _rebased_startup_script, 417 _rebased_startup_script,
415 "--manifest", 418 "--manifest",
416 _rebased_manifest, 419 _rebased_manifest,
417 "--output", 420 "--output",
418 rebase_path(_bundle), 421 rebase_path(_bundle),
419 ] 422 ]
420 } 423 }
421 } 424 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698