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

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

Issue 2091023006: Adds EngineGeolocationFeature for Blimp Geolocation project. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addresses Wez's #61 comments Created 4 years, 5 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 import("//tools/grit/repack.gni") 10 import("//tools/grit/repack.gni")
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 } 259 }
260 260
261 source_set("feature") { 261 source_set("feature") {
262 sources = [ 262 sources = [
263 "feature/engine_render_widget_feature.cc", 263 "feature/engine_render_widget_feature.cc",
264 "feature/engine_render_widget_feature.h", 264 "feature/engine_render_widget_feature.h",
265 "feature/engine_settings_feature.cc", 265 "feature/engine_settings_feature.cc",
266 "feature/engine_settings_feature.h", 266 "feature/engine_settings_feature.h",
267 "feature/geolocation/blimp_location_provider.cc", 267 "feature/geolocation/blimp_location_provider.cc",
268 "feature/geolocation/blimp_location_provider.h", 268 "feature/geolocation/blimp_location_provider.h",
269 "feature/geolocation/engine_geolocation_feature.cc",
270 "feature/geolocation/engine_geolocation_feature.h",
269 ] 271 ]
270 272
271 deps = [ 273 deps = [
272 "//base", 274 "//base",
273 "//blimp/common", 275 "//blimp/common",
274 "//blimp/common/proto", 276 "//blimp/common/proto",
275 "//blimp/engine:app_settings", 277 "//blimp/engine:app_settings",
276 "//blimp/engine:common", 278 "//blimp/engine:common",
277 "//blimp/net", 279 "//blimp/net",
278 "//content/public/browser", 280 "//content/public/browser",
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 369
368 use_new_wrapper_types = false 370 use_new_wrapper_types = false
369 } 371 }
370 372
371 source_set("test_support") { 373 source_set("test_support") {
372 testonly = true 374 testonly = true
373 375
374 sources = [ 376 sources = [
375 "app/test_content_main_delegate.cc", 377 "app/test_content_main_delegate.cc",
376 "app/test_content_main_delegate.h", 378 "app/test_content_main_delegate.h",
379 "feature/geolocation/mock_blimp_location_provider_delegate.cc",
380 "feature/geolocation/mock_blimp_location_provider_delegate.h",
377 ] 381 ]
378 382
379 deps = [ 383 deps = [
380 ":app", 384 ":app",
385 ":feature",
381 "//base", 386 "//base",
387 "//testing/gmock",
382 ] 388 ]
383 } 389 }
384 390
385 source_set("app_unit_tests") { 391 source_set("app_unit_tests") {
386 testonly = true 392 testonly = true
387 393
388 sources = [ 394 sources = [
389 "app/blimp_engine_config_unittest.cc", 395 "app/blimp_engine_config_unittest.cc",
390 "app/blimp_metrics_service_client_unittest.cc", 396 "app/blimp_metrics_service_client_unittest.cc",
391 "app/blimp_stability_metrics_provider_unittest.cc", 397 "app/blimp_stability_metrics_provider_unittest.cc",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 "//testing/gtest", 443 "//testing/gtest",
438 ] 444 ]
439 } 445 }
440 446
441 source_set("feature_unit_tests") { 447 source_set("feature_unit_tests") {
442 testonly = true 448 testonly = true
443 449
444 sources = [ 450 sources = [
445 "feature/engine_render_widget_feature_unittest.cc", 451 "feature/engine_render_widget_feature_unittest.cc",
446 "feature/engine_settings_feature_unittest.cc", 452 "feature/engine_settings_feature_unittest.cc",
453 "feature/geolocation/blimp_location_provider_unittest.cc",
454 "feature/geolocation/engine_geolocation_feature_unittest.cc",
447 ] 455 ]
448 456
449 deps = [ 457 deps = [
450 ":feature", 458 ":feature",
459 ":test_support",
451 "//base", 460 "//base",
452 "//base/test:test_support", 461 "//base/test:test_support",
453 "//blimp/common", 462 "//blimp/common",
454 "//blimp/common/proto", 463 "//blimp/common/proto",
455 "//blimp/engine:app_settings", 464 "//blimp/engine:app_settings",
456 "//blimp/net", 465 "//blimp/net",
457 "//blimp/net:test_support", 466 "//blimp/net:test_support",
458 "//content", 467 "//content",
459 "//content/public/browser", 468 "//content/public/browser",
460 "//net", 469 "//net",
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 "//content/test:test_support", 691 "//content/test:test_support",
683 "//testing/gmock", 692 "//testing/gmock",
684 "//testing/gtest", 693 "//testing/gtest",
685 ] 694 ]
686 695
687 data = [ 696 data = [
688 "//blimp/test/data/", 697 "//blimp/test/data/",
689 "$root_out_dir/blimp_engine.pak", 698 "$root_out_dir/blimp_engine.pak",
690 ] 699 ]
691 } 700 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698