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

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
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 # Need this annoying rebase_path call to match what happened with the 77 # Need this annoying rebase_path call to match what happened with the
78 # sources. 78 # sources.
79 sources -= rebase_path([ 79 sources -= rebase_path([
80 "$root_gen_dir/webkit/grit/devtools_resources.h", 80 "$root_gen_dir/webkit/grit/devtools_resources.h",
81 "$root_gen_dir/webkit/grit/devtools_resources_map.cc", 81 "$root_gen_dir/webkit/grit/devtools_resources_map.cc",
82 "$root_gen_dir/webkit/grit/devtools_resources_map.h", 82 "$root_gen_dir/webkit/grit/devtools_resources_map.h",
83 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", 83 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h",
84 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", 84 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc",
85 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.cc", 85 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.cc",
86 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.h", 86 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.h",
87 "$root_gen_dir/content/browser/devtools/devtools_protocol_handler.cc",
88 "$root_gen_dir/content/browser/devtools/devtools_protocol_handler.h",
87 ], ".") 89 ], ".")
88 90
89 # Non-iOS deps. 91 # Non-iOS deps.
90 deps += [ 92 deps += [
91 "//cc", 93 "//cc",
92 "//cc/surfaces", 94 "//cc/surfaces",
93 "//content/app/resources", 95 "//content/app/resources",
94 "//content/app/strings", 96 "//content/app/strings",
95 "//content/browser/devtools:resources", 97 "//content/browser/devtools:resources",
96 "//content/common:mojo_bindings", 98 "//content/common:mojo_bindings",
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 deps += [ "//dbus" ] 406 deps += [ "//dbus" ]
405 } else { 407 } else {
406 # This will already have gotten removed for all non-Linux cases. 408 # This will already have gotten removed for all non-Linux cases.
407 sources -= [ 409 sources -= [
408 "battery_status/battery_status_manager_linux.cc", 410 "battery_status/battery_status_manager_linux.cc",
409 "geolocation/wifi_data_provider_linux.cc", 411 "geolocation/wifi_data_provider_linux.cc",
410 ] 412 ]
411 } 413 }
412 } 414 }
413 } 415 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/devtools/BUILD.gn » ('j') | content/browser/devtools/devtools_protocol_frontend.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698