| 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 } |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 ":client", | 84 ":client", |
| 85 "//base", | 85 "//base", |
| 86 "//base/test:test_support", | 86 "//base/test:test_support", |
| 87 "//testing/gmock", | 87 "//testing/gmock", |
| 88 "//testing/gtest", | 88 "//testing/gtest", |
| 89 ] | 89 ] |
| 90 } | 90 } |
| 91 | 91 |
| 92 source_set("feature") { | 92 source_set("feature") { |
| 93 sources = [ | 93 sources = [ |
| 94 "core/contents/tab_control_feature.cc", |
| 95 "core/contents/tab_control_feature.h", |
| 94 "feature/ime_feature.cc", | 96 "feature/ime_feature.cc", |
| 95 "feature/ime_feature.h", | 97 "feature/ime_feature.h", |
| 96 "feature/render_widget_feature.cc", | 98 "feature/render_widget_feature.cc", |
| 97 "feature/render_widget_feature.h", | 99 "feature/render_widget_feature.h", |
| 98 "feature/settings_feature.cc", | 100 "feature/settings_feature.cc", |
| 99 "feature/settings_feature.h", | 101 "feature/settings_feature.h", |
| 100 "feature/tab_control_feature.cc", | |
| 101 "feature/tab_control_feature.h", | |
| 102 ] | 102 ] |
| 103 | 103 |
| 104 deps = [ | 104 deps = [ |
| 105 "//base:base", | 105 "//base:base", |
| 106 "//blimp/common", | 106 "//blimp/common", |
| 107 "//blimp/net", | 107 "//blimp/net", |
| 108 "//cc", | 108 "//cc", |
| 109 "//cc/proto", | 109 "//cc/proto", |
| 110 "//components/url_formatter", | 110 "//components/url_formatter", |
| 111 "//net:net", | 111 "//net:net", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 ":feature", | 186 ":feature", |
| 187 "//blimp/common/proto", | 187 "//blimp/common/proto", |
| 188 "//skia", | 188 "//skia", |
| 189 ] | 189 ] |
| 190 } | 190 } |
| 191 | 191 |
| 192 source_set("feature_unit_tests") { | 192 source_set("feature_unit_tests") { |
| 193 testonly = true | 193 testonly = true |
| 194 | 194 |
| 195 sources = [ | 195 sources = [ |
| 196 "core/contents/tab_control_feature_unittest.cc", |
| 196 "feature/compositor/blimp_compositor_manager_unittest.cc", | 197 "feature/compositor/blimp_compositor_manager_unittest.cc", |
| 197 "feature/render_widget_feature_unittest.cc", | 198 "feature/render_widget_feature_unittest.cc", |
| 198 "feature/tab_control_feature_unittest.cc", | |
| 199 ] | 199 ] |
| 200 | 200 |
| 201 deps = [ | 201 deps = [ |
| 202 ":compositor", | 202 ":compositor", |
| 203 ":test_support", | 203 ":test_support", |
| 204 "//base", | 204 "//base", |
| 205 "//base/test:test_support", | 205 "//base/test:test_support", |
| 206 "//blimp/client/core/compositor", | 206 "//blimp/client/core/compositor", |
| 207 "//blimp/common", | 207 "//blimp/common", |
| 208 "//blimp/common/proto", | 208 "//blimp/common/proto", |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 instrumentation_test_apk("blimp_test_apk") { | 480 instrumentation_test_apk("blimp_test_apk") { |
| 481 apk_name = "BlimpTest" | 481 apk_name = "BlimpTest" |
| 482 apk_under_test = ":blimp_apk" | 482 apk_under_test = ":blimp_apk" |
| 483 android_manifest = blimp_test_apk_manifest | 483 android_manifest = blimp_test_apk_manifest |
| 484 android_manifest_dep = ":blimp_test_apk_manifest" | 484 android_manifest_dep = ":blimp_test_apk_manifest" |
| 485 deps = [ | 485 deps = [ |
| 486 ":blimp_test_java", | 486 ":blimp_test_java", |
| 487 ] | 487 ] |
| 488 } | 488 } |
| 489 } | 489 } |
| OLD | NEW |