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

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: Updating repo to see if try is fixed 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
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",
375 ] 377 ]
376 378
377 deps = [ 379 deps = [
378 ":app", 380 ":app",
379 "//base", 381 "//base",
382 "//testing/gmock",
380 ] 383 ]
381 } 384 }
382 385
383 source_set("app_unit_tests") { 386 source_set("app_unit_tests") {
384 testonly = true 387 testonly = true
385 388
386 sources = [ 389 sources = [
387 "app/blimp_engine_config_unittest.cc", 390 "app/blimp_engine_config_unittest.cc",
388 "app/blimp_metrics_service_client_unittest.cc", 391 "app/blimp_metrics_service_client_unittest.cc",
389 "app/blimp_stability_metrics_provider_unittest.cc", 392 "app/blimp_stability_metrics_provider_unittest.cc",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 "//testing/gtest", 440 "//testing/gtest",
438 ] 441 ]
439 } 442 }
440 443
441 source_set("feature_unit_tests") { 444 source_set("feature_unit_tests") {
442 testonly = true 445 testonly = true
443 446
444 sources = [ 447 sources = [
445 "feature/engine_render_widget_feature_unittest.cc", 448 "feature/engine_render_widget_feature_unittest.cc",
446 "feature/engine_settings_feature_unittest.cc", 449 "feature/engine_settings_feature_unittest.cc",
450 "feature/geolocation/engine_geolocation_feature_unittest.cc",
447 ] 451 ]
448 452
449 deps = [ 453 deps = [
450 ":feature", 454 ":feature",
455 ":test_support",
451 "//base", 456 "//base",
452 "//base/test:run_all_unittests", 457 "//base/test:run_all_unittests",
453 "//base/test:test_support", 458 "//base/test:test_support",
454 "//blimp/common", 459 "//blimp/common",
455 "//blimp/common/proto", 460 "//blimp/common/proto",
456 "//blimp/engine:app_settings", 461 "//blimp/engine:app_settings",
457 "//blimp/net", 462 "//blimp/net",
458 "//blimp/net:test_support", 463 "//blimp/net:test_support",
459 "//content", 464 "//content",
460 "//content/public/browser", 465 "//content/public/browser",
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 "//content/test:test_support", 681 "//content/test:test_support",
677 "//testing/gmock", 682 "//testing/gmock",
678 "//testing/gtest", 683 "//testing/gtest",
679 ] 684 ]
680 685
681 data = [ 686 data = [
682 "//blimp/test/data/", 687 "//blimp/test/data/",
683 "$root_out_dir/blimp_engine.pak", 688 "$root_out_dir/blimp_engine.pak",
684 ] 689 ]
685 } 690 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698