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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 "//blimp/common/proto", | 77 "//blimp/common/proto", |
78 "//blimp/engine:blob_channel_mojo_cpp_sources", | 78 "//blimp/engine:blob_channel_mojo_cpp_sources", |
79 "//blimp/net", | 79 "//blimp/net", |
80 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", | 80 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
81 "//components/crash/content/app:lib", | 81 "//components/crash/content/app:lib", |
82 "//content/public/app:both", | 82 "//content/public/app:both", |
83 "//content/public/browser", | 83 "//content/public/browser", |
84 "//content/public/common", | 84 "//content/public/common", |
85 "//content/public/renderer", | 85 "//content/public/renderer", |
86 "//content/public/utility", | 86 "//content/public/utility", |
| 87 "//device/geolocation:device_geolocation", |
87 "//net", | 88 "//net", |
88 ] | 89 ] |
89 } | 90 } |
90 | 91 |
91 source_set("app_config") { | 92 source_set("app_config") { |
92 sources = [ | 93 sources = [ |
93 "app/blimp_engine_config.cc", | 94 "app/blimp_engine_config.cc", |
94 "app/blimp_engine_config.h", | 95 "app/blimp_engine_config.h", |
95 ] | 96 ] |
96 deps = [ | 97 deps = [ |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 | 271 |
271 deps = [ | 272 deps = [ |
272 "//base", | 273 "//base", |
273 "//blimp/common", | 274 "//blimp/common", |
274 "//blimp/common/proto", | 275 "//blimp/common/proto", |
275 "//blimp/engine:app_settings", | 276 "//blimp/engine:app_settings", |
276 "//blimp/engine:common", | 277 "//blimp/engine:common", |
277 "//blimp/net", | 278 "//blimp/net", |
278 "//content/public/browser", | 279 "//content/public/browser", |
279 "//content/public/common", | 280 "//content/public/common", |
| 281 "//device/geolocation:device_geolocation", |
280 "//net", | 282 "//net", |
281 "//ui/base", | 283 "//ui/base", |
282 "//ui/base/ime", | 284 "//ui/base/ime", |
283 "//ui/resources", | 285 "//ui/resources", |
284 "//ui/wm", | 286 "//ui/wm", |
285 ] | 287 ] |
286 } | 288 } |
287 | 289 |
288 source_set("renderer") { | 290 source_set("renderer") { |
289 sources = [ | 291 sources = [ |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
681 "//content/test:test_support", | 683 "//content/test:test_support", |
682 "//testing/gmock", | 684 "//testing/gmock", |
683 "//testing/gtest", | 685 "//testing/gtest", |
684 ] | 686 ] |
685 | 687 |
686 data = [ | 688 data = [ |
687 "//blimp/test/data/", | 689 "//blimp/test/data/", |
688 "$root_out_dir/blimp_engine.pak", | 690 "$root_out_dir/blimp_engine.pak", |
689 ] | 691 ] |
690 } | 692 } |
OLD | NEW |