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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 "app/blimp_browser_main_parts.cc", | 51 "app/blimp_browser_main_parts.cc", |
52 "app/blimp_browser_main_parts.h", | 52 "app/blimp_browser_main_parts.h", |
53 "app/blimp_content_browser_client.cc", | 53 "app/blimp_content_browser_client.cc", |
54 "app/blimp_content_browser_client.h", | 54 "app/blimp_content_browser_client.h", |
55 "app/blimp_content_main_delegate.cc", | 55 "app/blimp_content_main_delegate.cc", |
56 "app/blimp_content_main_delegate.h", | 56 "app/blimp_content_main_delegate.h", |
57 ] | 57 ] |
58 | 58 |
59 public_deps = [ | 59 public_deps = [ |
60 ":app_metrics", | 60 ":app_metrics", |
| 61 "//device/geolocation:device_geolocation", |
| 62 "//device/geolocation/public/interfaces", |
61 ] | 63 ] |
62 | 64 |
63 deps = [ | 65 deps = [ |
64 ":app_config", | 66 ":app_config", |
65 ":app_net", | 67 ":app_net", |
66 ":app_permissions", | 68 ":app_permissions", |
67 ":app_settings", | 69 ":app_settings", |
68 ":app_ui", | 70 ":app_ui", |
69 ":blob_channel_service", | 71 ":blob_channel_service", |
70 ":common", | 72 ":common", |
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
697 "//content/test:test_support", | 699 "//content/test:test_support", |
698 "//testing/gmock", | 700 "//testing/gmock", |
699 "//testing/gtest", | 701 "//testing/gtest", |
700 ] | 702 ] |
701 | 703 |
702 data = [ | 704 data = [ |
703 "//blimp/test/data/", | 705 "//blimp/test/data/", |
704 "$root_out_dir/blimp_engine.pak", | 706 "$root_out_dir/blimp_engine.pak", |
705 ] | 707 ] |
706 } | 708 } |
OLD | NEW |