 Chromium Code Reviews
 Chromium Code Reviews Issue 2096103003:
  Move weave packet to common location b/t generator and receiver  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master
    
  
    Issue 2096103003:
  Move weave packet to common location b/t generator and receiver  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master| OLD | NEW | 
|---|---|
| 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("//testing/test.gni") | 5 import("//testing/test.gni") | 
| 6 | 6 | 
| 7 source_set("ble") { | 7 source_set("ble") { | 
| 8 sources = [ | 8 sources = [ | 
| 9 "bluetooth_low_energy_characteristics_finder.cc", | 9 "bluetooth_low_energy_characteristics_finder.cc", | 
| 10 "bluetooth_low_energy_characteristics_finder.h", | 10 "bluetooth_low_energy_characteristics_finder.h", | 
| 11 "bluetooth_low_energy_connection.cc", | 11 "bluetooth_low_energy_connection.cc", | 
| 12 "bluetooth_low_energy_connection.h", | 12 "bluetooth_low_energy_connection.h", | 
| 13 "bluetooth_low_energy_connection_finder.cc", | 13 "bluetooth_low_energy_connection_finder.cc", | 
| 14 "bluetooth_low_energy_connection_finder.h", | 14 "bluetooth_low_energy_connection_finder.h", | 
| 15 "bluetooth_low_energy_device_whitelist.cc", | 15 "bluetooth_low_energy_device_whitelist.cc", | 
| 16 "bluetooth_low_energy_device_whitelist.h", | 16 "bluetooth_low_energy_device_whitelist.h", | 
| 17 "bluetooth_low_energy_weave_client_connection.cc", | |
| 
Kyle Horimoto
2016/06/27 20:51:11
Please don't add these until the other CL is lande
 
jingxuy
2016/06/27 22:21:32
yah, sorry just ignore them. I'll make sure I'll r
 | |
| 18 "bluetooth_low_energy_weave_client_connection.h", | |
| 19 "bluetooth_low_energy_weave_packet.h", | |
| 17 "bluetooth_low_energy_weave_packet_generator.cc", | 20 "bluetooth_low_energy_weave_packet_generator.cc", | 
| 18 "bluetooth_low_energy_weave_packet_generator.h", | 21 "bluetooth_low_energy_weave_packet_generator.h", | 
| 19 "fake_wire_message.cc", | 22 "fake_wire_message.cc", | 
| 20 "fake_wire_message.h", | 23 "fake_wire_message.h", | 
| 21 "pref_names.cc", | 24 "pref_names.cc", | 
| 22 "pref_names.h", | 25 "pref_names.h", | 
| 23 "remote_attribute.h", | 26 "remote_attribute.h", | 
| 24 ] | 27 ] | 
| 25 | 28 | 
| 26 deps = [ | 29 deps = [ | 
| (...skipping 14 matching lines...) Expand all Loading... | |
| 41 ] | 44 ] | 
| 42 } | 45 } | 
| 43 | 46 | 
| 44 source_set("unit_tests") { | 47 source_set("unit_tests") { | 
| 45 testonly = true | 48 testonly = true | 
| 46 sources = [ | 49 sources = [ | 
| 47 "bluetooth_low_energy_characteristics_finder_unittest.cc", | 50 "bluetooth_low_energy_characteristics_finder_unittest.cc", | 
| 48 "bluetooth_low_energy_connection_finder_unittest.cc", | 51 "bluetooth_low_energy_connection_finder_unittest.cc", | 
| 49 "bluetooth_low_energy_connection_unittest.cc", | 52 "bluetooth_low_energy_connection_unittest.cc", | 
| 50 "bluetooth_low_energy_device_whitelist_unittest.cc", | 53 "bluetooth_low_energy_device_whitelist_unittest.cc", | 
| 54 "bluetooth_low_energy_weave_client_connection_unittest.cc", | |
| 51 "bluetooth_low_energy_weave_packet_generator_unittest.cc", | 55 "bluetooth_low_energy_weave_packet_generator_unittest.cc", | 
| 52 ] | 56 ] | 
| 53 | 57 | 
| 54 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 58 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 
| 55 | 59 | 
| 56 deps = [ | 60 deps = [ | 
| 57 ":ble", | 61 ":ble", | 
| 58 "//base/test:test_support", | 62 "//base/test:test_support", | 
| 59 "//components/prefs:test_support", | 63 "//components/prefs:test_support", | 
| 60 "//components/proximity_auth:test_support", | 64 "//components/proximity_auth:test_support", | 
| 61 "//device/bluetooth:mocks", | 65 "//device/bluetooth:mocks", | 
| 62 "//testing/gmock", | 66 "//testing/gmock", | 
| 63 "//testing/gtest", | 67 "//testing/gtest", | 
| 64 ] | 68 ] | 
| 65 | 69 | 
| 66 public_deps = [ | 70 public_deps = [ | 
| 67 "//components/proximity_auth/cryptauth/proto", | 71 "//components/proximity_auth/cryptauth/proto", | 
| 68 ] | 72 ] | 
| 69 } | 73 } | 
| OLD | NEW |