OLD | NEW |
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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 } | 258 } |
259 | 259 |
260 source_set("feature") { | 260 source_set("feature") { |
261 sources = [ | 261 sources = [ |
262 "feature/engine_render_widget_feature.cc", | 262 "feature/engine_render_widget_feature.cc", |
263 "feature/engine_render_widget_feature.h", | 263 "feature/engine_render_widget_feature.h", |
264 "feature/engine_settings_feature.cc", | 264 "feature/engine_settings_feature.cc", |
265 "feature/engine_settings_feature.h", | 265 "feature/engine_settings_feature.h", |
266 "feature/geolocation/blimp_location_provider.cc", | 266 "feature/geolocation/blimp_location_provider.cc", |
267 "feature/geolocation/blimp_location_provider.h", | 267 "feature/geolocation/blimp_location_provider.h", |
| 268 "feature/geolocation/engine_geolocation_feature.cc", |
| 269 "feature/geolocation/engine_geolocation_feature.h", |
268 ] | 270 ] |
269 | 271 |
270 deps = [ | 272 deps = [ |
271 "//base", | 273 "//base", |
272 "//blimp/common", | 274 "//blimp/common", |
273 "//blimp/common/proto", | 275 "//blimp/common/proto", |
274 "//blimp/engine:app_settings", | 276 "//blimp/engine:app_settings", |
275 "//blimp/engine:common", | 277 "//blimp/engine:common", |
276 "//blimp/net", | 278 "//blimp/net", |
277 "//content/public/browser", | 279 "//content/public/browser", |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 testonly = true | 369 testonly = true |
368 | 370 |
369 sources = [ | 371 sources = [ |
370 "app/test_content_main_delegate.cc", | 372 "app/test_content_main_delegate.cc", |
371 "app/test_content_main_delegate.h", | 373 "app/test_content_main_delegate.h", |
372 ] | 374 ] |
373 | 375 |
374 deps = [ | 376 deps = [ |
375 ":app", | 377 ":app", |
376 "//base", | 378 "//base", |
| 379 "//testing/gmock", |
377 ] | 380 ] |
378 } | 381 } |
379 | 382 |
380 source_set("app_unit_tests") { | 383 source_set("app_unit_tests") { |
381 testonly = true | 384 testonly = true |
382 | 385 |
383 sources = [ | 386 sources = [ |
384 "app/blimp_engine_config_unittest.cc", | 387 "app/blimp_engine_config_unittest.cc", |
385 "app/blimp_metrics_service_client_unittest.cc", | 388 "app/blimp_metrics_service_client_unittest.cc", |
386 "app/blimp_stability_metrics_provider_unittest.cc", | 389 "app/blimp_stability_metrics_provider_unittest.cc", |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 "//testing/gtest", | 437 "//testing/gtest", |
435 ] | 438 ] |
436 } | 439 } |
437 | 440 |
438 source_set("feature_unit_tests") { | 441 source_set("feature_unit_tests") { |
439 testonly = true | 442 testonly = true |
440 | 443 |
441 sources = [ | 444 sources = [ |
442 "feature/engine_render_widget_feature_unittest.cc", | 445 "feature/engine_render_widget_feature_unittest.cc", |
443 "feature/engine_settings_feature_unittest.cc", | 446 "feature/engine_settings_feature_unittest.cc", |
| 447 "feature/geolocation/engine_geolocation_feature_unittest.cc", |
444 ] | 448 ] |
445 | 449 |
446 deps = [ | 450 deps = [ |
447 ":feature", | 451 ":feature", |
| 452 ":test_support", |
448 "//base", | 453 "//base", |
449 "//base/test:run_all_unittests", | 454 "//base/test:run_all_unittests", |
450 "//base/test:test_support", | 455 "//base/test:test_support", |
451 "//blimp/common", | 456 "//blimp/common", |
452 "//blimp/common/proto", | 457 "//blimp/common/proto", |
453 "//blimp/engine:app_settings", | 458 "//blimp/engine:app_settings", |
454 "//blimp/net", | 459 "//blimp/net", |
455 "//blimp/net:test_support", | 460 "//blimp/net:test_support", |
456 "//content", | 461 "//content", |
457 "//content/public/browser", | 462 "//content/public/browser", |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
656 "//content/test:test_support", | 661 "//content/test:test_support", |
657 "//testing/gmock", | 662 "//testing/gmock", |
658 "//testing/gtest", | 663 "//testing/gtest", |
659 ] | 664 ] |
660 | 665 |
661 data = [ | 666 data = [ |
662 "data/", | 667 "data/", |
663 "$root_out_dir/blimp_engine.pak", | 668 "$root_out_dir/blimp_engine.pak", |
664 ] | 669 ] |
665 } | 670 } |
OLD | NEW |