| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 ":client", | 83 ":client", |
| 84 "//base", | 84 "//base", |
| 85 "//base/test:test_support", | 85 "//base/test:test_support", |
| 86 "//testing/gmock", | 86 "//testing/gmock", |
| 87 "//testing/gtest", | 87 "//testing/gtest", |
| 88 ] | 88 ] |
| 89 } | 89 } |
| 90 | 90 |
| 91 source_set("feature") { | 91 source_set("feature") { |
| 92 sources = [ | 92 sources = [ |
| 93 "core/feature/tab_control_feature.cc", |
| 94 "core/feature/tab_control_feature.h", |
| 93 "feature/ime_feature.cc", | 95 "feature/ime_feature.cc", |
| 94 "feature/ime_feature.h", | 96 "feature/ime_feature.h", |
| 95 "feature/navigation_feature.cc", | 97 "feature/navigation_feature.cc", |
| 96 "feature/navigation_feature.h", | 98 "feature/navigation_feature.h", |
| 97 "feature/render_widget_feature.cc", | 99 "feature/render_widget_feature.cc", |
| 98 "feature/render_widget_feature.h", | 100 "feature/render_widget_feature.h", |
| 99 "feature/settings_feature.cc", | 101 "feature/settings_feature.cc", |
| 100 "feature/settings_feature.h", | 102 "feature/settings_feature.h", |
| 101 "feature/tab_control_feature.cc", | |
| 102 "feature/tab_control_feature.h", | |
| 103 ] | 103 ] |
| 104 | 104 |
| 105 deps = [ | 105 deps = [ |
| 106 "//base:base", | 106 "//base:base", |
| 107 "//blimp/common", | 107 "//blimp/common", |
| 108 "//blimp/net", | 108 "//blimp/net", |
| 109 "//cc", | 109 "//cc", |
| 110 "//cc/proto", | 110 "//cc/proto", |
| 111 "//components/url_formatter", | 111 "//components/url_formatter", |
| 112 "//net:net", | 112 "//net:net", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 ":feature", | 189 ":feature", |
| 190 "//blimp/common/proto", | 190 "//blimp/common/proto", |
| 191 "//skia", | 191 "//skia", |
| 192 ] | 192 ] |
| 193 } | 193 } |
| 194 | 194 |
| 195 source_set("feature_unit_tests") { | 195 source_set("feature_unit_tests") { |
| 196 testonly = true | 196 testonly = true |
| 197 | 197 |
| 198 sources = [ | 198 sources = [ |
| 199 "core/feature/tab_control_feature_unittest.cc", |
| 199 "feature/compositor/blimp_compositor_manager_unittest.cc", | 200 "feature/compositor/blimp_compositor_manager_unittest.cc", |
| 200 "feature/navigation_feature_unittest.cc", | 201 "feature/navigation_feature_unittest.cc", |
| 201 "feature/render_widget_feature_unittest.cc", | 202 "feature/render_widget_feature_unittest.cc", |
| 202 "feature/tab_control_feature_unittest.cc", | |
| 203 ] | 203 ] |
| 204 | 204 |
| 205 deps = [ | 205 deps = [ |
| 206 ":compositor", | 206 ":compositor", |
| 207 ":test_support", | 207 ":test_support", |
| 208 "//base", | 208 "//base", |
| 209 "//base/test:test_support", | 209 "//base/test:test_support", |
| 210 "//blimp/client/core/compositor", | 210 "//blimp/client/core/compositor", |
| 211 "//blimp/common", | 211 "//blimp/common", |
| 212 "//blimp/common/proto", | 212 "//blimp/common/proto", |
| (...skipping 267 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 |