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

Unified Diff: ui/base/BUILD.gn

Issue 2770693003: Add missing .h files to .gn files that have a .cc file next to it in the gn file already. (Closed)
Patch Set: rebase Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/public/BUILD.gn ('k') | ui/events/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/BUILD.gn
diff --git a/ui/base/BUILD.gn b/ui/base/BUILD.gn
index 67127236f4a3064de1d6e7368c7dc459c0ea4865..75fd0cac3cf4be9a5d1070857da05f516c7fc93a 100644
--- a/ui/base/BUILD.gn
+++ b/ui/base/BUILD.gn
@@ -236,6 +236,7 @@ component("base") {
"resource/resource_bundle.cc",
"resource/resource_bundle.h",
"resource/resource_bundle_android.cc",
+ "resource/resource_bundle_android.h",
"resource/resource_bundle_auralinux.cc",
"resource/resource_bundle_ios.mm",
"resource/resource_bundle_mac.mm",
@@ -640,6 +641,7 @@ static_library("test_support") {
"test/material_design_controller_test_api.h",
"test/ui_controls.h",
"test/ui_controls_aura.cc",
+ "test/ui_controls_aura.h",
"test/ui_controls_internal_win.cc",
"test/ui_controls_internal_win.h",
"test/ui_controls_mac.mm",
@@ -718,7 +720,10 @@ static_library("test_support") {
}
if (!use_aura) {
- sources -= [ "test/ui_controls_aura.cc" ]
+ sources -= [
+ "test/ui_controls_aura.cc",
+ "test/ui_controls_aura.h",
+ ]
} else if (is_win) {
sources -= [ "test/ui_controls_win.cc" ]
}
« no previous file with comments | « third_party/WebKit/public/BUILD.gn ('k') | ui/events/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698