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

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

Issue 2400163003: arc: enable Android tracing in verified-boot mode (Closed)
Patch Set: rebase to tot 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
« no previous file with comments | « components/arc/common/tracing.mojom ('k') | content/browser/tracing/arc_tracing_agent.h » ('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("//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 1387 matching lines...) Expand 10 before | Expand all | Expand 10 after
1398 "streams/stream_handle_impl.h", 1398 "streams/stream_handle_impl.h",
1399 "streams/stream_read_observer.h", 1399 "streams/stream_read_observer.h",
1400 "streams/stream_register_observer.h", 1400 "streams/stream_register_observer.h",
1401 "streams/stream_registry.cc", 1401 "streams/stream_registry.cc",
1402 "streams/stream_registry.h", 1402 "streams/stream_registry.h",
1403 "streams/stream_url_request_job.cc", 1403 "streams/stream_url_request_job.cc",
1404 "streams/stream_url_request_job.h", 1404 "streams/stream_url_request_job.h",
1405 "streams/stream_write_observer.h", 1405 "streams/stream_write_observer.h",
1406 "theme_helper_mac.h", 1406 "theme_helper_mac.h",
1407 "theme_helper_mac.mm", 1407 "theme_helper_mac.mm",
1408 "tracing/arc_tracing_agent.cc",
1409 "tracing/arc_tracing_agent.h",
1410 "tracing/background_memory_tracing_observer.cc", 1408 "tracing/background_memory_tracing_observer.cc",
1411 "tracing/background_memory_tracing_observer.h", 1409 "tracing/background_memory_tracing_observer.h",
1412 "tracing/background_tracing_config_impl.cc", 1410 "tracing/background_tracing_config_impl.cc",
1413 "tracing/background_tracing_config_impl.h", 1411 "tracing/background_tracing_config_impl.h",
1414 "tracing/background_tracing_manager_impl.cc", 1412 "tracing/background_tracing_manager_impl.cc",
1415 "tracing/background_tracing_manager_impl.h", 1413 "tracing/background_tracing_manager_impl.h",
1416 "tracing/background_tracing_rule.cc", 1414 "tracing/background_tracing_rule.cc",
1417 "tracing/background_tracing_rule.h", 1415 "tracing/background_tracing_rule.h",
1418 "tracing/etw_tracing_agent_win.cc", 1416 "tracing/etw_tracing_agent_win.cc",
1419 "tracing/etw_tracing_agent_win.h", 1417 "tracing/etw_tracing_agent_win.h",
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
1529 "//ui/vector_icons", 1527 "//ui/vector_icons",
1530 ] 1528 ]
1531 } 1529 }
1532 if ((use_udev && is_posix) || is_mac || is_win) { 1530 if ((use_udev && is_posix) || is_mac || is_win) {
1533 deps += [ "//tools/battor_agent:battor_agent_lib" ] 1531 deps += [ "//tools/battor_agent:battor_agent_lib" ]
1534 sources += [ 1532 sources += [
1535 "tracing/power_tracing_agent.cc", 1533 "tracing/power_tracing_agent.cc",
1536 "tracing/power_tracing_agent.h", 1534 "tracing/power_tracing_agent.h",
1537 ] 1535 ]
1538 } 1536 }
1537 if (is_chromeos) {
1538 sources += [
1539 "tracing/arc_tracing_agent.cc",
1540 "tracing/arc_tracing_agent.h",
1541 ]
1542 }
1539 1543
1540 if (enable_webrtc) { 1544 if (enable_webrtc) {
1541 sources += [ 1545 sources += [
1542 "renderer_host/media/peer_connection_tracker_host.cc", 1546 "renderer_host/media/peer_connection_tracker_host.cc",
1543 "renderer_host/media/peer_connection_tracker_host.h", 1547 "renderer_host/media/peer_connection_tracker_host.h",
1544 "renderer_host/p2p/socket_dispatcher_host.cc", 1548 "renderer_host/p2p/socket_dispatcher_host.cc",
1545 "renderer_host/p2p/socket_dispatcher_host.h", 1549 "renderer_host/p2p/socket_dispatcher_host.h",
1546 "renderer_host/p2p/socket_host.cc", 1550 "renderer_host/p2p/socket_host.cc",
1547 "renderer_host/p2p/socket_host.h", 1551 "renderer_host/p2p/socket_host.h",
1548 "renderer_host/p2p/socket_host_tcp.cc", 1552 "renderer_host/p2p/socket_host_tcp.cc",
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
2069 if (!is_component_build) { 2073 if (!is_component_build) {
2070 public_deps = [ 2074 public_deps = [
2071 ":browser", 2075 ":browser",
2072 ] 2076 ]
2073 } else { 2077 } else {
2074 public_deps = [ 2078 public_deps = [
2075 "//third_party/leveldatabase", 2079 "//third_party/leveldatabase",
2076 ] 2080 ]
2077 } 2081 }
2078 } 2082 }
OLDNEW
« no previous file with comments | « components/arc/common/tracing.mojom ('k') | content/browser/tracing/arc_tracing_agent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698