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

Side by Side Diff: device/BUILD.gn

Issue 1249933004: Add code to detect new added ReceiveError on Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated comments, changed variable name. Created 5 years, 4 months 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
« no previous file with comments | « no previous file | device/device_tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/features.gni") 5 import("//build/config/features.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/rules.gni") # For generate_jni(). 9 import("//build/config/android/rules.gni") # For generate_jni().
10 } 10 }
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 sources += [ 73 sources += [
74 "hid/hid_connection_unittest.cc", 74 "hid/hid_connection_unittest.cc",
75 "hid/hid_device_filter_unittest.cc", 75 "hid/hid_device_filter_unittest.cc",
76 "hid/hid_report_descriptor_unittest.cc", 76 "hid/hid_report_descriptor_unittest.cc",
77 "hid/input_service_linux_unittest.cc", 77 "hid/input_service_linux_unittest.cc",
78 "hid/test_report_descriptors.cc", 78 "hid/test_report_descriptors.cc",
79 "hid/test_report_descriptors.h", 79 "hid/test_report_descriptors.h",
80 "serial/data_sink_unittest.cc", 80 "serial/data_sink_unittest.cc",
81 "serial/data_source_unittest.cc", 81 "serial/data_source_unittest.cc",
82 "serial/serial_connection_unittest.cc", 82 "serial/serial_connection_unittest.cc",
83 "serial/serial_io_handler_posix_unittest.cc",
83 "serial/serial_service_unittest.cc", 84 "serial/serial_service_unittest.cc",
84 ] 85 ]
85 deps += [ 86 deps += [
86 "//device/hid", 87 "//device/hid",
87 "//device/serial", 88 "//device/serial",
88 "//device/serial:test_support", 89 "//device/serial:test_support",
89 ] 90 ]
90 } 91 }
91 92
92 if (use_udev) { 93 if (use_udev) {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 } 160 }
160 161
161 android_library("bluetooth_test_java") { 162 android_library("bluetooth_test_java") {
162 java_files = bluetooth_java_sources_needing_jni 163 java_files = bluetooth_java_sources_needing_jni
163 deps = [ 164 deps = [
164 "//base:base_java", 165 "//base:base_java",
165 "//device/bluetooth:java", 166 "//device/bluetooth:java",
166 ] 167 ]
167 } 168 }
168 } 169 }
OLDNEW
« no previous file with comments | « no previous file | device/device_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698