| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| 11 | 11 |
| 12 source_set("session") { | 12 source_set("session") { |
| 13 sources = [ | 13 sources = [ |
| 14 "session/blimp_client_session.cc", | 14 "session/blimp_client_session.cc", |
| 15 "session/blimp_client_session.h", | 15 "session/blimp_client_session.h", |
| 16 ] | 16 ] |
| 17 | 17 |
| 18 public_deps = [ | 18 public_deps = [ |
| 19 "//blimp/client/core", | 19 "//blimp/client/core", |
| 20 "//blimp/client/core:switches", | 20 "//blimp/client/core:switches", |
| 21 "//blimp/client/core/geolocation", |
| 21 "//blimp/common/proto", | 22 "//blimp/common/proto", |
| 23 "//device/geolocation:device_geolocation", |
| 22 "//ui/events", | 24 "//ui/events", |
| 23 ] | 25 ] |
| 24 | 26 |
| 25 deps = [ | 27 deps = [ |
| 26 "//base", | 28 "//base", |
| 27 "//blimp/client/core/compositor", | 29 "//blimp/client/core/compositor", |
| 28 "//blimp/client/core/contents", | 30 "//blimp/client/core/contents", |
| 29 "//blimp/client/core/render_widget", | 31 "//blimp/client/core/render_widget", |
| 30 "//blimp/client/core/session", | 32 "//blimp/client/core/session", |
| 31 "//blimp/client/core/settings", | 33 "//blimp/client/core/settings", |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 instrumentation_test_apk("blimp_test_apk") { | 371 instrumentation_test_apk("blimp_test_apk") { |
| 370 apk_name = "BlimpTest" | 372 apk_name = "BlimpTest" |
| 371 apk_under_test = ":blimp_apk" | 373 apk_under_test = ":blimp_apk" |
| 372 android_manifest = blimp_test_apk_manifest | 374 android_manifest = blimp_test_apk_manifest |
| 373 android_manifest_dep = ":blimp_test_apk_manifest" | 375 android_manifest_dep = ":blimp_test_apk_manifest" |
| 374 deps = [ | 376 deps = [ |
| 375 ":blimp_test_java", | 377 ":blimp_test_java", |
| 376 ] | 378 ] |
| 377 } | 379 } |
| 378 } | 380 } |
| OLD | NEW |