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

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: Merge Created 4 years, 4 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
« no previous file with comments | « blimp/common/proto/tab_control.proto ('k') | blimp/engine/app/blimp_browser_main_parts.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 "mojo/blob_channel.mojom", 367 "mojo/blob_channel.mojom",
366 ] 368 ]
367 } 369 }
368 370
369 source_set("test_support") { 371 source_set("test_support") {
370 testonly = true 372 testonly = true
371 373
372 sources = [ 374 sources = [
373 "app/test_content_main_delegate.cc", 375 "app/test_content_main_delegate.cc",
374 "app/test_content_main_delegate.h", 376 "app/test_content_main_delegate.h",
377 "feature/geolocation/mock_blimp_location_provider_delegate.cc",
378 "feature/geolocation/mock_blimp_location_provider_delegate.h",
375 ] 379 ]
376 380
377 deps = [ 381 deps = [
378 ":app", 382 ":app",
383 ":feature",
379 "//base", 384 "//base",
385 "//testing/gmock",
380 ] 386 ]
381 } 387 }
382 388
383 source_set("app_unit_tests") { 389 source_set("app_unit_tests") {
384 testonly = true 390 testonly = true
385 391
386 sources = [ 392 sources = [
387 "app/blimp_engine_config_unittest.cc", 393 "app/blimp_engine_config_unittest.cc",
388 "app/blimp_metrics_service_client_unittest.cc", 394 "app/blimp_metrics_service_client_unittest.cc",
389 "app/blimp_stability_metrics_provider_unittest.cc", 395 "app/blimp_stability_metrics_provider_unittest.cc",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 "//testing/gtest", 441 "//testing/gtest",
436 ] 442 ]
437 } 443 }
438 444
439 source_set("feature_unit_tests") { 445 source_set("feature_unit_tests") {
440 testonly = true 446 testonly = true
441 447
442 sources = [ 448 sources = [
443 "feature/engine_render_widget_feature_unittest.cc", 449 "feature/engine_render_widget_feature_unittest.cc",
444 "feature/engine_settings_feature_unittest.cc", 450 "feature/engine_settings_feature_unittest.cc",
451 "feature/geolocation/blimp_location_provider_unittest.cc",
452 "feature/geolocation/engine_geolocation_feature_unittest.cc",
445 ] 453 ]
446 454
447 deps = [ 455 deps = [
448 ":feature", 456 ":feature",
457 ":test_support",
449 "//base", 458 "//base",
450 "//base/test:test_support", 459 "//base/test:test_support",
451 "//blimp/common", 460 "//blimp/common",
452 "//blimp/common/proto", 461 "//blimp/common/proto",
453 "//blimp/engine:app_settings", 462 "//blimp/engine:app_settings",
454 "//blimp/net", 463 "//blimp/net",
455 "//blimp/net:test_support", 464 "//blimp/net:test_support",
456 "//content", 465 "//content",
457 "//content/public/browser", 466 "//content/public/browser",
458 "//net", 467 "//net",
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 "//content/test:test_support", 690 "//content/test:test_support",
682 "//testing/gmock", 691 "//testing/gmock",
683 "//testing/gtest", 692 "//testing/gtest",
684 ] 693 ]
685 694
686 data = [ 695 data = [
687 "//blimp/test/data/", 696 "//blimp/test/data/",
688 "$root_out_dir/blimp_engine.pak", 697 "$root_out_dir/blimp_engine.pak",
689 ] 698 ]
690 } 699 }
OLDNEW
« no previous file with comments | « blimp/common/proto/tab_control.proto ('k') | blimp/engine/app/blimp_browser_main_parts.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698