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

Side by Side Diff: extensions/browser/app_window/BUILD.gn

Issue 2452943003: Fix a bunch of generated file build flakes in //extensions (Closed)
Patch Set: 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
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 source_set("app_window") { 5 source_set("app_window") {
6 sources = [ 6 sources = [
7 "app_delegate.h", 7 "app_delegate.h",
8 "app_web_contents_helper.cc", 8 "app_web_contents_helper.cc",
9 "app_web_contents_helper.h", 9 "app_web_contents_helper.h",
10 "app_window.cc", 10 "app_window.cc",
(...skipping 11 matching lines...) Expand all
22 "size_constraints.h", 22 "size_constraints.h",
23 ] 23 ]
24 24
25 configs += [ 25 configs += [
26 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 26 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
27 "//build/config/compiler:no_size_t_to_int_warning", 27 "//build/config/compiler:no_size_t_to_int_warning",
28 ] 28 ]
29 29
30 deps = [ 30 deps = [
31 "//content/public/common", 31 "//content/public/common",
32 "//extensions:extensions_resources",
Devlin 2016/10/26 19:30:28 could this just be extensions_browser_resources?
tsniatowski 2016/10/26 20:43:41 Checked -- yes. I can change this if you prefer.
Devlin 2016/10/26 21:57:52 Please. extensions_resources includes renderer re
32 "//extensions/strings", 33 "//extensions/strings",
33 ] 34 ]
34 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698