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

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

Issue 2353283002: [TimeZoneMonitor] Decouple //content/browser/time_zone_monitor* to //device/. (Closed)
Patch Set: Do not set output_name in gn Created 4 years, 2 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 | « content/app/android/library_loader_hooks.cc ('k') | content/browser/DEPS » ('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("//tools/ipc_fuzzer/ipc_fuzzer.gni") 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
9 9
10 source_set("browser") { 10 source_set("browser") {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 "//content/common", 56 "//content/common",
57 "//content/public/common:common_sources", 57 "//content/public/common:common_sources",
58 "//crypto", 58 "//crypto",
59 "//device/battery", 59 "//device/battery",
60 "//device/bluetooth", 60 "//device/bluetooth",
61 "//device/gamepad", 61 "//device/gamepad",
62 "//device/generic_sensor", 62 "//device/generic_sensor",
63 "//device/geolocation", 63 "//device/geolocation",
64 "//device/geolocation/public/interfaces", 64 "//device/geolocation/public/interfaces",
65 "//device/power_save_blocker", 65 "//device/power_save_blocker",
66 "//device/time_zone_monitor",
66 "//device/vibration", 67 "//device/vibration",
67 "//gin", 68 "//gin",
68 "//google_apis", 69 "//google_apis",
69 "//gpu", 70 "//gpu",
70 "//gpu/command_buffer/client:gles2_implementation", 71 "//gpu/command_buffer/client:gles2_implementation",
71 "//gpu/command_buffer/client:gles2_interface", 72 "//gpu/command_buffer/client:gles2_interface",
72 "//ipc", 73 "//ipc",
73 "//ipc:mojom", 74 "//ipc:mojom",
74 "//media", 75 "//media",
75 "//media/capture", 76 "//media/capture",
(...skipping 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after
1285 "streams/stream_handle_impl.h", 1286 "streams/stream_handle_impl.h",
1286 "streams/stream_read_observer.h", 1287 "streams/stream_read_observer.h",
1287 "streams/stream_register_observer.h", 1288 "streams/stream_register_observer.h",
1288 "streams/stream_registry.cc", 1289 "streams/stream_registry.cc",
1289 "streams/stream_registry.h", 1290 "streams/stream_registry.h",
1290 "streams/stream_url_request_job.cc", 1291 "streams/stream_url_request_job.cc",
1291 "streams/stream_url_request_job.h", 1292 "streams/stream_url_request_job.h",
1292 "streams/stream_write_observer.h", 1293 "streams/stream_write_observer.h",
1293 "theme_helper_mac.h", 1294 "theme_helper_mac.h",
1294 "theme_helper_mac.mm", 1295 "theme_helper_mac.mm",
1295 "time_zone_monitor.cc",
1296 "time_zone_monitor.h",
1297 "time_zone_monitor_android.cc",
1298 "time_zone_monitor_android.h",
1299 "time_zone_monitor_chromeos.cc",
1300 "time_zone_monitor_linux.cc",
1301 "time_zone_monitor_mac.mm",
1302 "time_zone_monitor_win.cc",
1303 "tracing/background_tracing_config_impl.cc", 1296 "tracing/background_tracing_config_impl.cc",
1304 "tracing/background_tracing_config_impl.h", 1297 "tracing/background_tracing_config_impl.h",
1305 "tracing/background_tracing_manager_impl.cc", 1298 "tracing/background_tracing_manager_impl.cc",
1306 "tracing/background_tracing_manager_impl.h", 1299 "tracing/background_tracing_manager_impl.h",
1307 "tracing/background_tracing_rule.cc", 1300 "tracing/background_tracing_rule.cc",
1308 "tracing/background_tracing_rule.h", 1301 "tracing/background_tracing_rule.h",
1309 "tracing/etw_tracing_agent_win.cc", 1302 "tracing/etw_tracing_agent_win.cc",
1310 "tracing/etw_tracing_agent_win.h", 1303 "tracing/etw_tracing_agent_win.h",
1311 "tracing/file_tracing_provider_impl.cc", 1304 "tracing/file_tracing_provider_impl.cc",
1312 "tracing/file_tracing_provider_impl.h", 1305 "tracing/file_tracing_provider_impl.h",
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after
1947 if (!is_component_build) { 1940 if (!is_component_build) {
1948 public_deps = [ 1941 public_deps = [
1949 ":browser", 1942 ":browser",
1950 ] 1943 ]
1951 } else { 1944 } else {
1952 public_deps = [ 1945 public_deps = [
1953 "//third_party/leveldatabase", 1946 "//third_party/leveldatabase",
1954 ] 1947 ]
1955 } 1948 }
1956 } 1949 }
OLDNEW
« no previous file with comments | « content/app/android/library_loader_hooks.cc ('k') | content/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698