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

Side by Side Diff: extensions/BUILD.gn

Issue 506253003: Revert "Split bundle generation steps so that API registration is generated in browser, not common." (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 | « content/app/content_main_runner.cc ('k') | extensions/browser/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("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 import("//tools/grit/repack.gni") 6 import("//tools/grit/repack.gni")
7 7
8 # GYP version: extensions/extensions_resources.gyp:extensions_resources 8 # GYP version: extensions/extensions_resources.gyp:extensions_resources
9 group("extensions_resources") { 9 group("extensions_resources") {
10 deps = [ 10 deps = [
11 ":extensions_renderer_resources", 11 ":extensions_renderer_resources",
12 ":extensions_resources_grd", 12 ":extensions_resources_grd",
13 ] 13 ]
14 } 14 }
15 15
16 # GYP version: extensions/extensions_resources.gyp:extensions_resources 16 # GYP version: extensions/extensions_resources.gyp:extensions_resources
17 # (extensions_resources action) 17 # (exntensions_resources action)
18 grit("extensions_resources_grd") { 18 grit("extensions_resources_grd") {
19 source = "extensions_resources.grd" 19 source = "extensions_resources.grd"
20 outputs = [ 20 outputs = [
21 "grit/extensions_resources.h", 21 "grit/extensions_resources.h",
22 "extensions_resources.pak", 22 "extensions_resources.pak",
23 ] 23 ]
24 } 24 }
25 25
26 # GYP version: extensions/extensions_resources.gyp:extensions_resources 26 # GYP version: extensions/extensions_resources.gyp:extensions_resources
27 # (exntensions_renderer_resources action) 27 # (exntensions_renderer_resources action)
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 "test/test_permissions_provider.cc", 68 "test/test_permissions_provider.cc",
69 "test/test_permissions_provider.h", 69 "test/test_permissions_provider.h",
70 ] 70 ]
71 71
72 deps = [ 72 deps = [
73 ":extensions_resources", 73 ":extensions_resources",
74 "//base", 74 "//base",
75 "//extensions/browser", 75 "//extensions/browser",
76 "//extensions/common", 76 "//extensions/common",
77 "//extensions/common/api", 77 "//extensions/common/api",
78 "//extensions/common/api:api_registration",
79 "//net:test_support", 78 "//net:test_support",
80 "//testing/gmock", 79 "//testing/gmock",
81 "//testing/gtest", 80 "//testing/gtest",
82 ] 81 ]
83 82
84 if (is_win) { 83 if (is_win) {
85 cflags = [ 84 cflags = [
86 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 85 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
87 ] 86 ]
88 } 87 }
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 "//testing/gtest", 191 "//testing/gtest",
193 ] 192 ]
194 193
195 if (is_win) { 194 if (is_win) {
196 deps += [ 195 deps += [
197 "//base/allocator", 196 "//base/allocator",
198 ] 197 ]
199 } 198 }
200 } 199 }
201 } 200 }
OLDNEW
« no previous file with comments | « content/app/content_main_runner.cc ('k') | extensions/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698