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

Side by Side Diff: chrome/browser/devtools/BUILD.gn

Issue 2458573004: Move debug_devtools to a buildflag_header. (Closed)
Patch Set: Merge Created 4 years, 1 month 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 | « chrome/browser/DEPS ('k') | chrome/browser/devtools/device/port_forwarding_controller.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 if (!is_android) { 5 if (!is_android) {
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//chrome/common/features.gni") 7 import("//chrome/common/features.gni")
8 import("//tools/grit/grit_rule.gni") 8 import("//tools/grit/grit_rule.gni")
9 } 9 }
10 10
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 "devtools_network_upload_data_stream.h", 48 "devtools_network_upload_data_stream.h",
49 "devtools_protocol.cc", 49 "devtools_protocol.cc",
50 "devtools_protocol.h", 50 "devtools_protocol.h",
51 ] 51 ]
52 sources += get_target_outputs(":devtools_protocol_constants") 52 sources += get_target_outputs(":devtools_protocol_constants")
53 53
54 configs += [ 54 configs += [
55 "//build/config/compiler:no_size_t_to_int_warning", 55 "//build/config/compiler:no_size_t_to_int_warning",
56 "//build/config/compiler:wexit_time_destructors", 56 "//build/config/compiler:wexit_time_destructors",
57 "//build/config:precompiled_headers", 57 "//build/config:precompiled_headers",
58 "//third_party/WebKit/public:debug_devtools",
59 ] 58 ]
60 59
61 deps = [ 60 deps = [
62 ":devtools_protocol_constants", 61 ":devtools_protocol_constants",
63 "//base", 62 "//base",
64 "//content/public/browser", 63 "//content/public/browser",
65 "//net", 64 "//net",
65 "//third_party/WebKit/public:features",
66 "//ui/events:dom_keycode_converter", 66 "//ui/events:dom_keycode_converter",
67 ] 67 ]
68 68
69 if (!is_android) { 69 if (!is_android) {
70 deps += [ 70 deps += [
71 "//chrome:extra_resources", 71 "//chrome:extra_resources",
72 "//chrome:resources", 72 "//chrome:resources",
73 "//chrome:strings", 73 "//chrome:strings",
74 "//chrome/app/theme:theme_resources", 74 "//chrome/app/theme:theme_resources",
75 "//chrome/common", 75 "//chrome/common",
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 "remote_debugging_server.h", 132 "remote_debugging_server.h",
133 ] 133 ]
134 if (enable_service_discovery) { 134 if (enable_service_discovery) {
135 sources += [ 135 sources += [
136 "device/cast_device_provider.cc", 136 "device/cast_device_provider.cc",
137 "device/cast_device_provider.h", 137 "device/cast_device_provider.h",
138 ] 138 ]
139 } 139 }
140 } 140 }
141 } 141 }
OLDNEW
« no previous file with comments | « chrome/browser/DEPS ('k') | chrome/browser/devtools/device/port_forwarding_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698