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

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

Issue 1950003002: gn BUILD fixes for disabling enable_extensions and use_ash feature flags. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebasing on latest master Created 4 years, 6 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 | « build/config/features.gni ('k') | chrome/browser/media/router/BUILD.gn » ('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("//tools/grit/grit_rule.gni") 7 import("//tools/grit/grit_rule.gni")
8 } 8 }
9 9
10 action("devtools_protocol_constants") { 10 action("devtools_protocol_constants") {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 "//content/public/browser", 67 "//content/public/browser",
68 "//net", 68 "//net",
69 ] 69 ]
70 70
71 if (!is_android) { 71 if (!is_android) {
72 deps += [ 72 deps += [
73 "//chrome:extra_resources", 73 "//chrome:extra_resources",
74 "//chrome:resources", 74 "//chrome:resources",
75 "//chrome:strings", 75 "//chrome:strings",
76 "//chrome/app/theme:theme_resources", 76 "//chrome/app/theme:theme_resources",
77 "//chrome/common/extensions/api",
78 "//components/devtools_http_handler", 77 "//components/devtools_http_handler",
79 "//net:http_server", 78 "//net:http_server",
80 "//skia", 79 "//skia",
81 "//third_party/icu", 80 "//third_party/icu",
82 "//third_party/leveldatabase", 81 "//third_party/leveldatabase",
83 ] 82 ]
83 if (enable_extensions) {
84 deps += [ "//chrome/common/extensions/api" ]
85 }
84 sources += [ 86 sources += [
85 "chrome_devtools_discovery_provider.cc", 87 "chrome_devtools_discovery_provider.cc",
86 "chrome_devtools_discovery_provider.h", 88 "chrome_devtools_discovery_provider.h",
87 "device/adb/adb_client_socket.cc", 89 "device/adb/adb_client_socket.cc",
88 "device/adb/adb_client_socket.h", 90 "device/adb/adb_client_socket.h",
89 "device/adb/adb_device_provider.cc", 91 "device/adb/adb_device_provider.cc",
90 "device/adb/adb_device_provider.h", 92 "device/adb/adb_device_provider.h",
91 "device/android_device_info_query.cc", 93 "device/android_device_info_query.cc",
92 "device/android_device_manager.cc", 94 "device/android_device_manager.cc",
93 "device/android_device_manager.h", 95 "device/android_device_manager.h",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 "remote_debugging_server.h", 136 "remote_debugging_server.h",
135 ] 137 ]
136 if (enable_service_discovery) { 138 if (enable_service_discovery) {
137 sources += [ 139 sources += [
138 "device/cast_device_provider.cc", 140 "device/cast_device_provider.cc",
139 "device/cast_device_provider.h", 141 "device/cast_device_provider.h",
140 ] 142 ]
141 } 143 }
142 } 144 }
143 } 145 }
OLDNEW
« no previous file with comments | « build/config/features.gni ('k') | chrome/browser/media/router/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698