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

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

Issue 508973003: DevTools: Protocol handler generator for content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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/browser/devtools/BUILD.gn » ('j') | content/browser/devtools/BUILD.gn » ('J')
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("//content/browser/browser.gni") 7 import("//content/browser/browser.gni")
8 8
9 config("storage_config") { 9 config("storage_config") {
10 if (is_android) { 10 if (is_android) {
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 # Need this annoying rebase_path call to match what happened with the 81 # Need this annoying rebase_path call to match what happened with the
82 # sources. 82 # sources.
83 sources -= rebase_path([ 83 sources -= rebase_path([
84 "$root_gen_dir/webkit/grit/devtools_resources.h", 84 "$root_gen_dir/webkit/grit/devtools_resources.h",
85 "$root_gen_dir/webkit/grit/devtools_resources_map.cc", 85 "$root_gen_dir/webkit/grit/devtools_resources_map.cc",
86 "$root_gen_dir/webkit/grit/devtools_resources_map.h", 86 "$root_gen_dir/webkit/grit/devtools_resources_map.h",
87 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", 87 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h",
88 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", 88 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc",
89 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.cc", 89 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.cc",
90 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.h", 90 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.h",
91 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_handler _impl.cc",
92 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_handler _impl.h",
91 ], ".") 93 ], ".")
92 94
93 # Non-iOS deps. 95 # Non-iOS deps.
94 deps += [ 96 deps += [
95 "//cc", 97 "//cc",
96 "//cc/surfaces", 98 "//cc/surfaces",
97 "//content/app/resources", 99 "//content/app/resources",
98 "//content/app/strings", 100 "//content/app/strings",
99 "//content/browser/devtools:resources", 101 "//content/browser/devtools:resources",
100 "//content/common:mojo_bindings", 102 "//content/common:mojo_bindings",
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 deps += [ "//dbus" ] 412 deps += [ "//dbus" ]
411 } else { 413 } else {
412 # This will already have gotten removed for all non-Linux cases. 414 # This will already have gotten removed for all non-Linux cases.
413 sources -= [ 415 sources -= [
414 "battery_status/battery_status_manager_linux.cc", 416 "battery_status/battery_status_manager_linux.cc",
415 "geolocation/wifi_data_provider_linux.cc", 417 "geolocation/wifi_data_provider_linux.cc",
416 ] 418 ]
417 } 419 }
418 } 420 }
419 } 421 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/devtools/BUILD.gn » ('j') | content/browser/devtools/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698