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

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

Issue 2904443004: Allow generation of a chromium outdirs when enable_extensions=false (Closed)
Patch Set: Rebase Created 3 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 | « chrome/browser/BUILD.gn ('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 import("//extensions/features/features.gni")
6
5 if (!is_android) { 7 if (!is_android) {
6 import("//build/config/features.gni") 8 import("//build/config/features.gni")
7 import("//chrome/common/features.gni") 9 import("//chrome/common/features.gni")
8 import("//tools/grit/grit_rule.gni") 10 import("//tools/grit/grit_rule.gni")
9 } 11 }
10 12
11 action("devtools_protocol_constants") { 13 action("devtools_protocol_constants") {
12 script = "devtools_protocol_constants_generator.py" 14 script = "devtools_protocol_constants_generator.py"
13 deps = [ 15 deps = [
14 "//third_party/WebKit/Source/core/inspector:protocol_version", 16 "//third_party/WebKit/Source/core/inspector:protocol_version",
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 "//ui/events:dom_keycode_converter", 68 "//ui/events:dom_keycode_converter",
67 ] 69 ]
68 70
69 if (!is_android) { 71 if (!is_android) {
70 deps += [ 72 deps += [
71 "//chrome:extra_resources", 73 "//chrome:extra_resources",
72 "//chrome:resources", 74 "//chrome:resources",
73 "//chrome:strings", 75 "//chrome:strings",
74 "//chrome/app/theme:theme_resources", 76 "//chrome/app/theme:theme_resources",
75 "//chrome/common", 77 "//chrome/common",
76 "//chrome/common/extensions/api",
77 "//net:http_server", 78 "//net:http_server",
78 "//skia", 79 "//skia",
79 "//third_party/icu", 80 "//third_party/icu",
80 "//third_party/leveldatabase", 81 "//third_party/leveldatabase",
81 ] 82 ]
82 sources += [ 83 sources += [
83 "chrome_devtools_manager_delegate.cc", 84 "chrome_devtools_manager_delegate.cc",
84 "chrome_devtools_manager_delegate.h", 85 "chrome_devtools_manager_delegate.h",
85 "device/adb/adb_client_socket.cc", 86 "device/adb/adb_client_socket.cc",
86 "device/adb/adb_client_socket.h", 87 "device/adb/adb_client_socket.h",
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 "url_constants.cc", 138 "url_constants.cc",
138 "url_constants.h", 139 "url_constants.h",
139 ] 140 ]
140 if (enable_service_discovery) { 141 if (enable_service_discovery) {
141 sources += [ 142 sources += [
142 "device/cast_device_provider.cc", 143 "device/cast_device_provider.cc",
143 "device/cast_device_provider.h", 144 "device/cast_device_provider.h",
144 ] 145 ]
145 } 146 }
146 } 147 }
148
149 if (enable_extensions) {
150 deps += [ "//chrome/common/extensions/api" ]
151 }
147 } 152 }
OLDNEW
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/browser/media/router/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698