| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 import("//blimp/client/core/config.gni") | 10 import("//blimp/client/core/config.gni") |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 testonly = true | 57 testonly = true |
| 58 | 58 |
| 59 deps = [ | 59 deps = [ |
| 60 "//blimp/client/core/compositor:unit_tests", | 60 "//blimp/client/core/compositor:unit_tests", |
| 61 "//blimp/client/core/contents:unit_tests", | 61 "//blimp/client/core/contents:unit_tests", |
| 62 "//blimp/client/core/context:unit_tests", | 62 "//blimp/client/core/context:unit_tests", |
| 63 "//blimp/client/core/feedback:unit_tests", | 63 "//blimp/client/core/feedback:unit_tests", |
| 64 "//blimp/client/core/geolocation:unit_tests", | 64 "//blimp/client/core/geolocation:unit_tests", |
| 65 "//blimp/client/core/render_widget:unit_tests", | 65 "//blimp/client/core/render_widget:unit_tests", |
| 66 "//blimp/client/core/session:unit_tests", | 66 "//blimp/client/core/session:unit_tests", |
| 67 "//blimp/client/core/settings:unit_tests", |
| 67 ] | 68 ] |
| 68 } | 69 } |
| 69 | 70 |
| 70 if (is_android) { | 71 if (is_android) { |
| 71 # This target is here to let //chrome depend on | 72 # This target is here to let //chrome depend on |
| 72 # //blimp/client/public:public_java and automatically get the correct | 73 # //blimp/client/public:public_java and automatically get the correct |
| 73 # implementation of //blimp/client/core depending on whether | 74 # implementation of //blimp/client/core depending on whether |
| 74 # enable_blimp_client is set or not. | 75 # enable_blimp_client is set or not. |
| 75 java_group("core_shim_java") { | 76 java_group("core_shim_java") { |
| 76 visibility = [ "//blimp/client/public/*" ] | 77 visibility = [ "//blimp/client/public/*" ] |
| (...skipping 26 matching lines...) Expand all Loading... |
| 103 } | 104 } |
| 104 | 105 |
| 105 java_group("dummy_core_java") { | 106 java_group("dummy_core_java") { |
| 106 visibility = [ ":*" ] | 107 visibility = [ ":*" ] |
| 107 | 108 |
| 108 deps = [ | 109 deps = [ |
| 109 "//blimp/client/core/context:dummy_context_java", | 110 "//blimp/client/core/context:dummy_context_java", |
| 110 ] | 111 ] |
| 111 } | 112 } |
| 112 } | 113 } |
| OLD | NEW |