summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbratell <bratell@opera.com>2015-02-23 08:19:53 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-23 16:20:12 +0000
commite5938a2d887bd71f1cf0df76d5d72e0a6318f888 (patch)
tree0b6600c046699ef150646d7e760050f2523d90db
parentd292b0128220f671368cc9ba22a3f85608a3ce94 (diff)
downloadchromium_src-e5938a2d887bd71f1cf0df76d5d72e0a6318f888.zip
chromium_src-e5938a2d887bd71f1cf0df76d5d72e0a6318f888.tar.gz
chromium_src-e5938a2d887bd71f1cf0df76d5d72e0a6318f888.tar.bz2
Correct paths in gypi files in components.
Followup to https://codereview.chromium.org/658383003 (constrained_window) https://codereview.chromium.org/808773005 (component_updater and update_client) This fixes warnings in gyp's msvs-ninja generator. R=blundell@chromium.org,oshima@chromium.org,sorin@chromium.org BUG=459058,410499 Review URL: https://codereview.chromium.org/952543002 Cr-Commit-Position: refs/heads/master@{#317589}
-rw-r--r--components/component_updater.gypi1
-rw-r--r--components/component_updater/BUILD.gn1
-rw-r--r--components/constrained_window.gypi4
-rw-r--r--components/constrained_window/BUILD.gn2
-rw-r--r--components/update_client.gypi1
-rw-r--r--components/update_client/BUILD.gn1
6 files changed, 5 insertions, 5 deletions
diff --git a/components/component_updater.gypi b/components/component_updater.gypi
index baa0801..cfc5a9f 100644
--- a/components/component_updater.gypi
+++ b/components/component_updater.gypi
@@ -18,7 +18,6 @@
'..',
],
'sources': [
- 'component_updater/component_updater_configurator.h',
'component_updater/component_updater_paths.cc',
'component_updater/component_updater_paths.h',
'component_updater/component_updater_service.cc',
diff --git a/components/component_updater/BUILD.gn b/components/component_updater/BUILD.gn
index 41df316..fb756a7 100644
--- a/components/component_updater/BUILD.gn
+++ b/components/component_updater/BUILD.gn
@@ -4,7 +4,6 @@
source_set("component_updater") {
sources = [
- "component_updater_configurator.h",
"component_updater_paths.cc",
"component_updater_paths.h",
"component_updater_service.cc",
diff --git a/components/constrained_window.gypi b/components/constrained_window.gypi
index 16c48b3..9abba05 100644
--- a/components/constrained_window.gypi
+++ b/components/constrained_window.gypi
@@ -16,8 +16,8 @@
],
'sources': [
'constrained_window/constrained_window_views.cc',
- 'constranied_window/constrained_window_views.h',
- 'constranied_window/constrained_window_views_client.h',
+ 'constrained_window/constrained_window_views.h',
+ 'constrained_window/constrained_window_views_client.h',
],
},
],
diff --git a/components/constrained_window/BUILD.gn b/components/constrained_window/BUILD.gn
index 7ffac17..050065a 100644
--- a/components/constrained_window/BUILD.gn
+++ b/components/constrained_window/BUILD.gn
@@ -6,7 +6,7 @@ static_library("constrained_window") {
sources = [
"constrained_window_views.cc",
"constrained_window_views.h",
- "constranied_window/constrained_window_views_client.h",
+ "constrained_window/constrained_window_views_client.h",
]
deps = [
diff --git a/components/update_client.gypi b/components/update_client.gypi
index b35dd68..77fbd5a 100644
--- a/components/update_client.gypi
+++ b/components/update_client.gypi
@@ -31,6 +31,7 @@
'update_client/component_patcher_operation.h',
'update_client/component_unpacker.cc',
'update_client/component_unpacker.h',
+ 'update_client/configurator.h',
'update_client/crx_downloader.cc',
'update_client/crx_downloader.h',
'update_client/crx_update_item.h',
diff --git a/components/update_client/BUILD.gn b/components/update_client/BUILD.gn
index 06e840b..c968b4d 100644
--- a/components/update_client/BUILD.gn
+++ b/components/update_client/BUILD.gn
@@ -12,6 +12,7 @@ source_set("update_client") {
"component_patcher_operation.h",
"component_unpacker.cc",
"component_unpacker.h",
+ "configurator.h",
"crx_downloader.cc",
"crx_downloader.h",
"crx_update_item.h",