Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: ash/BUILD.gn

Issue 2557163002: Implements computation of touch calibration transform using user provided data (Closed)
Patch Set: Resolving comments Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//ui/base/ui_features.gni") 8 import("//ui/base/ui_features.gni")
9 9
10 # Historical note: Ash shipped on Windows for a couple years to support 10 # Historical note: Ash shipped on Windows for a couple years to support
(...skipping 1382 matching lines...) Expand 10 before | Expand all | Expand 10 after
1393 "//url", 1393 "//url",
1394 ] 1394 ]
1395 1395
1396 data_deps = [ 1396 data_deps = [
1397 "//ash/common/strings:ash_test_strings", 1397 "//ash/common/strings:ash_test_strings",
1398 "//ash/resources:ash_test_resources_100_percent", 1398 "//ash/resources:ash_test_resources_100_percent",
1399 "//ash/resources:ash_test_resources_200_percent", 1399 "//ash/resources:ash_test_resources_200_percent",
1400 ] 1400 ]
1401 1401
1402 if (!use_x11) { 1402 if (!use_x11) {
1403 sources -= [ 1403 sources -= [ "host/ash_window_tree_host_x11_unittest.cc" ]
1404 "host/ash_window_tree_host_x11_unittest.cc", 1404 }
1405 "touch/touch_transformer_controller_unittest.cc", 1405
1406 ] 1406 if (!use_x11 && !use_ozone) {
kylechar 2016/12/22 16:56:00 The top of this file has an assert(is_chromeos) so
malaykeshav 2016/12/22 19:48:50 Done
1407 sources -= [ "touch/touch_transformer_controller_unittest.cc" ]
1407 } 1408 }
1408 1409
1409 # Usage of content should be in ash_with_content. 1410 # Usage of content should be in ash_with_content.
1410 assert_no_deps = [ 1411 assert_no_deps = [
1411 "//content/public/browser", 1412 "//content/public/browser",
1412 "//content/public/common", 1413 "//content/public/common",
1413 ] 1414 ]
1414 } 1415 }
1415 1416
1416 executable("ash_shell_with_content") { 1417 executable("ash_shell_with_content") {
(...skipping 12 matching lines...) Expand all
1429 "//content/public/app:both", 1430 "//content/public/app:both",
1430 "//device/bluetooth", 1431 "//device/bluetooth",
1431 ] 1432 ]
1432 1433
1433 data_deps = [ 1434 data_deps = [
1434 "//ash/common/strings:ash_test_strings", 1435 "//ash/common/strings:ash_test_strings",
1435 "//ash/resources:ash_test_resources_with_content_100_percent", 1436 "//ash/resources:ash_test_resources_with_content_100_percent",
1436 "//ash/resources:ash_test_resources_200_percent", 1437 "//ash/resources:ash_test_resources_200_percent",
1437 ] 1438 ]
1438 } 1439 }
OLDNEW
« no previous file with comments | « no previous file | ash/touch/touch_transformer_controller.h » ('j') | ash/touch/touch_transformer_controller.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698