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

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

Issue 2623613004: SharedWorker: Move classes under content/renderer to content/renderer/shared_worker (Closed)
Patch Set: fix include guards Created 3 years, 11 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 | content/renderer/render_frame_impl.cc » ('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 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("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//ppapi/features/features.gni") 8 import("//ppapi/features/features.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/webrtc/build/webrtc.gni") 10 import("//third_party/webrtc/build/webrtc.gni")
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 "service_worker/service_worker_context_message_filter.cc", 343 "service_worker/service_worker_context_message_filter.cc",
344 "service_worker/service_worker_context_message_filter.h", 344 "service_worker/service_worker_context_message_filter.h",
345 "service_worker/service_worker_type_util.cc", 345 "service_worker/service_worker_type_util.cc",
346 "service_worker/service_worker_type_util.h", 346 "service_worker/service_worker_type_util.h",
347 "shared_memory_seqlock_reader.cc", 347 "shared_memory_seqlock_reader.cc",
348 "shared_memory_seqlock_reader.h", 348 "shared_memory_seqlock_reader.h",
349 "shared_worker/embedded_shared_worker_content_settings_client_proxy.cc", 349 "shared_worker/embedded_shared_worker_content_settings_client_proxy.cc",
350 "shared_worker/embedded_shared_worker_content_settings_client_proxy.h", 350 "shared_worker/embedded_shared_worker_content_settings_client_proxy.h",
351 "shared_worker/embedded_shared_worker_stub.cc", 351 "shared_worker/embedded_shared_worker_stub.cc",
352 "shared_worker/embedded_shared_worker_stub.h", 352 "shared_worker/embedded_shared_worker_stub.h",
353 "shared_worker_repository.cc", 353 "shared_worker/shared_worker_repository.cc",
354 "shared_worker_repository.h", 354 "shared_worker/shared_worker_repository.h",
355 "shared_worker/websharedworker_proxy.cc",
356 "shared_worker/websharedworker_proxy.h",
355 "skia_benchmarking_extension.cc", 357 "skia_benchmarking_extension.cc",
356 "skia_benchmarking_extension.h", 358 "skia_benchmarking_extension.h",
357 "speech_recognition_dispatcher.cc", 359 "speech_recognition_dispatcher.cc",
358 "speech_recognition_dispatcher.h", 360 "speech_recognition_dispatcher.h",
359 "stats_collection_controller.cc", 361 "stats_collection_controller.cc",
360 "stats_collection_controller.h", 362 "stats_collection_controller.h",
361 "stats_collection_observer.cc", 363 "stats_collection_observer.cc",
362 "stats_collection_observer.h", 364 "stats_collection_observer.h",
363 "text_input_client_observer.cc", 365 "text_input_client_observer.cc",
364 "text_input_client_observer.h", 366 "text_input_client_observer.h",
(...skipping 10 matching lines...) Expand all
375 "webclipboard_impl.cc", 377 "webclipboard_impl.cc",
376 "webclipboard_impl.h", 378 "webclipboard_impl.h",
377 "webgraphicscontext3d_provider_impl.cc", 379 "webgraphicscontext3d_provider_impl.cc",
378 "webgraphicscontext3d_provider_impl.h", 380 "webgraphicscontext3d_provider_impl.h",
379 "webpublicsuffixlist_impl.cc", 381 "webpublicsuffixlist_impl.cc",
380 "webpublicsuffixlist_impl.h", 382 "webpublicsuffixlist_impl.h",
381 "webscrollbarbehavior_impl_aura.cc", 383 "webscrollbarbehavior_impl_aura.cc",
382 "webscrollbarbehavior_impl_aura.h", 384 "webscrollbarbehavior_impl_aura.h",
383 "webscrollbarbehavior_impl_mac.h", 385 "webscrollbarbehavior_impl_mac.h",
384 "webscrollbarbehavior_impl_mac.mm", 386 "webscrollbarbehavior_impl_mac.mm",
385 "websharedworker_proxy.cc",
386 "websharedworker_proxy.h",
387 ] 387 ]
388 388
389 configs += [ 389 configs += [
390 "//content:content_implementation", 390 "//content:content_implementation",
391 "//build/config/compiler:no_size_t_to_int_warning", 391 "//build/config/compiler:no_size_t_to_int_warning",
392 ] 392 ]
393 defines = [] 393 defines = []
394 394
395 public_deps = [] 395 public_deps = []
396 deps = [ 396 deps = [
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
917 # For the defines in mojo_media_config. 917 # For the defines in mojo_media_config.
918 public_configs = [ "//media/mojo/services:mojo_media_config" ] 918 public_configs = [ "//media/mojo/services:mojo_media_config" ]
919 } 919 }
920 920
921 if (!is_component_build) { 921 if (!is_component_build) {
922 public_deps = [ 922 public_deps = [
923 ":renderer", 923 ":renderer",
924 ] 924 ]
925 } 925 }
926 } 926 }
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698