Commit e5938a2d authored by bratell's avatar bratell Committed by Commit bot

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}
parent d292b012
...@@ -18,7 +18,6 @@ ...@@ -18,7 +18,6 @@
'..', '..',
], ],
'sources': [ 'sources': [
'component_updater/component_updater_configurator.h',
'component_updater/component_updater_paths.cc', 'component_updater/component_updater_paths.cc',
'component_updater/component_updater_paths.h', 'component_updater/component_updater_paths.h',
'component_updater/component_updater_service.cc', 'component_updater/component_updater_service.cc',
......
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
source_set("component_updater") { source_set("component_updater") {
sources = [ sources = [
"component_updater_configurator.h",
"component_updater_paths.cc", "component_updater_paths.cc",
"component_updater_paths.h", "component_updater_paths.h",
"component_updater_service.cc", "component_updater_service.cc",
......
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
], ],
'sources': [ 'sources': [
'constrained_window/constrained_window_views.cc', 'constrained_window/constrained_window_views.cc',
'constranied_window/constrained_window_views.h', 'constrained_window/constrained_window_views.h',
'constranied_window/constrained_window_views_client.h', 'constrained_window/constrained_window_views_client.h',
], ],
}, },
], ],
......
...@@ -6,7 +6,7 @@ static_library("constrained_window") { ...@@ -6,7 +6,7 @@ static_library("constrained_window") {
sources = [ sources = [
"constrained_window_views.cc", "constrained_window_views.cc",
"constrained_window_views.h", "constrained_window_views.h",
"constranied_window/constrained_window_views_client.h", "constrained_window/constrained_window_views_client.h",
] ]
deps = [ deps = [
......
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
'update_client/component_patcher_operation.h', 'update_client/component_patcher_operation.h',
'update_client/component_unpacker.cc', 'update_client/component_unpacker.cc',
'update_client/component_unpacker.h', 'update_client/component_unpacker.h',
'update_client/configurator.h',
'update_client/crx_downloader.cc', 'update_client/crx_downloader.cc',
'update_client/crx_downloader.h', 'update_client/crx_downloader.h',
'update_client/crx_update_item.h', 'update_client/crx_update_item.h',
......
...@@ -12,6 +12,7 @@ source_set("update_client") { ...@@ -12,6 +12,7 @@ source_set("update_client") {
"component_patcher_operation.h", "component_patcher_operation.h",
"component_unpacker.cc", "component_unpacker.cc",
"component_unpacker.h", "component_unpacker.h",
"configurator.h",
"crx_downloader.cc", "crx_downloader.cc",
"crx_downloader.h", "crx_downloader.h",
"crx_update_item.h", "crx_update_item.h",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment