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

Side by Side Diff: content/browser/BUILD.gn

Issue 2767373002: Implement GetJobResponse and merge JobData into DataManager. (Closed)
Patch Set: Removed tests and updated switch statement with comment Created 3 years, 8 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
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("//gpu/vulkan/features.gni") 7 import("//gpu/vulkan/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//ppapi/features/features.gni") 9 import("//ppapi/features/features.gni")
10 import("//printing/features/features.gni") 10 import("//printing/features/features.gni")
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 "audio_manager_thread.cc", 328 "audio_manager_thread.cc",
329 "audio_manager_thread.h", 329 "audio_manager_thread.h",
330 "background_fetch/background_fetch_context.cc", 330 "background_fetch/background_fetch_context.cc",
331 "background_fetch/background_fetch_context.h", 331 "background_fetch/background_fetch_context.h",
332 "background_fetch/background_fetch_data_manager.cc", 332 "background_fetch/background_fetch_data_manager.cc",
333 "background_fetch/background_fetch_data_manager.h", 333 "background_fetch/background_fetch_data_manager.h",
334 "background_fetch/background_fetch_event_dispatcher.cc", 334 "background_fetch/background_fetch_event_dispatcher.cc",
335 "background_fetch/background_fetch_event_dispatcher.h", 335 "background_fetch/background_fetch_event_dispatcher.h",
336 "background_fetch/background_fetch_job_controller.cc", 336 "background_fetch/background_fetch_job_controller.cc",
337 "background_fetch/background_fetch_job_controller.h", 337 "background_fetch/background_fetch_job_controller.h",
338 "background_fetch/background_fetch_job_data.cc",
339 "background_fetch/background_fetch_job_data.h",
340 "background_fetch/background_fetch_job_info.cc", 338 "background_fetch/background_fetch_job_info.cc",
341 "background_fetch/background_fetch_job_info.h", 339 "background_fetch/background_fetch_job_info.h",
340 "background_fetch/background_fetch_job_response_data.cc",
341 "background_fetch/background_fetch_job_response_data.h",
342 "background_fetch/background_fetch_request_info.cc", 342 "background_fetch/background_fetch_request_info.cc",
343 "background_fetch/background_fetch_request_info.h", 343 "background_fetch/background_fetch_request_info.h",
344 "background_fetch/background_fetch_service_impl.cc", 344 "background_fetch/background_fetch_service_impl.cc",
345 "background_fetch/background_fetch_service_impl.h", 345 "background_fetch/background_fetch_service_impl.h",
346 "background_sync/background_sync_context.cc", 346 "background_sync/background_sync_context.cc",
347 "background_sync/background_sync_context.h", 347 "background_sync/background_sync_context.h",
348 "background_sync/background_sync_manager.cc", 348 "background_sync/background_sync_manager.cc",
349 "background_sync/background_sync_manager.h", 349 "background_sync/background_sync_manager.h",
350 "background_sync/background_sync_metrics.cc", 350 "background_sync/background_sync_metrics.cc",
351 "background_sync/background_sync_metrics.h", 351 "background_sync/background_sync_metrics.h",
(...skipping 1702 matching lines...) Expand 10 before | Expand all | Expand 10 after
2054 if (!is_component_build) { 2054 if (!is_component_build) {
2055 public_deps = [ 2055 public_deps = [
2056 ":browser", 2056 ":browser",
2057 ] 2057 ]
2058 } else { 2058 } else {
2059 public_deps = [ 2059 public_deps = [
2060 "//third_party/leveldatabase", 2060 "//third_party/leveldatabase",
2061 ] 2061 ]
2062 } 2062 }
2063 } 2063 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698