| OLD | NEW | 
|---|
| (Empty) |  | 
|  | 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 | 
|  | 3 # found in the LICENSE file. | 
|  | 4 | 
|  | 5 source_set("drive") { | 
|  | 6   sources = [ | 
|  | 7     "drive_api_util.cc", | 
|  | 8     "drive_api_util.h", | 
|  | 9     "drive_app_registry.cc", | 
|  | 10     "drive_app_registry.h", | 
|  | 11     "drive_app_registry_observer.h", | 
|  | 12     "drive_notification_manager.cc", | 
|  | 13     "drive_notification_manager.h", | 
|  | 14     "drive_notification_observer.h", | 
|  | 15     "drive_uploader.cc", | 
|  | 16     "drive_uploader.h", | 
|  | 17     "event_logger.cc", | 
|  | 18     "event_logger.h", | 
|  | 19     "service/drive_api_service.cc", | 
|  | 20     "service/drive_api_service.h", | 
|  | 21     "service/drive_service_interface.cc", | 
|  | 22     "service/drive_service_interface.h", | 
|  | 23   ] | 
|  | 24   deps = [ | 
|  | 25     "//base:base", | 
|  | 26     "//components/invalidation:invalidation", | 
|  | 27     "//google_apis:google_apis", | 
|  | 28     "//net:net", | 
|  | 29     "//third_party/re2:re2", | 
|  | 30   ] | 
|  | 31 } | 
|  | 32 | 
|  | 33 source_set("test_support") { | 
|  | 34   sources = [ | 
|  | 35     "service/dummy_drive_service.cc", | 
|  | 36     "service/dummy_drive_service.h", | 
|  | 37     "service/fake_drive_service.cc", | 
|  | 38     "service/fake_drive_service.h", | 
|  | 39     "service/test_util.cc", | 
|  | 40     "service/test_util.h", | 
|  | 41   ] | 
|  | 42   deps = [ | 
|  | 43     ":drive", | 
|  | 44     "//base:base", | 
|  | 45     "//google_apis:google_apis", | 
|  | 46     "//net:net", | 
|  | 47   ] | 
|  | 48 } | 
| OLD | NEW | 
|---|