diff options
author | rsimha@chromium.org <rsimha@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-14 01:23:53 +0000 |
---|---|---|
committer | rsimha@chromium.org <rsimha@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-14 01:23:53 +0000 |
commit | 44c466cd38e7d6b843ef4bc21572e1f3cc51c52a (patch) | |
tree | b66a09386c5af2fcc00f4ebeb36ee5ce5e2ba710 /chrome_frame | |
parent | 8b39347a55356fc4c30e48d350abc39b8aad79b9 (diff) | |
download | chromium_src-44c466cd38e7d6b843ef4bc21572e1f3cc51c52a.zip chromium_src-44c466cd38e7d6b843ef4bc21572e1f3cc51c52a.tar.gz chromium_src-44c466cd38e7d6b843ef4bc21572e1f3cc51c52a.tar.bz2 |
[sync] Componentize sync: Part 1: Clean up sync.gyp and update chrome / test dependencies
One of the long term goals of the sync team is to pull sync code out of
chrome.dll and into its own component. As of today, several chrome tests
depend on various sync targets as defined in sync.gyp.
This is the first in a series of CLs to achieve the above goal.
This patch does the following:
- Renames / reorganizes several of the targets in sync.gyp
- Updates the declarations in various chrome gyp files by depending on
the smallest sync target possible to reflect the actual dependency.
- Takes a step closer toward the ideal IWYU guideline.
TBR=erikwright@chromium.org
BUG=136928
TEST=all chrome targets build on all platforms; all tests pass.
Review URL: https://chromiumcodereview.appspot.com/11348052
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167558 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/chrome_frame.gyp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome_frame/chrome_frame.gyp b/chrome_frame/chrome_frame.gyp index ad944f1..aff8337 100644 --- a/chrome_frame/chrome_frame.gyp +++ b/chrome_frame/chrome_frame.gyp @@ -417,7 +417,7 @@ '../net/net.gyp:net', '../net/net.gyp:net_test_support', '../skia/skia.gyp:skia', - '../sync/sync.gyp:syncapi_core', + '../sync/sync.gyp:sync_api', '../testing/gtest.gyp:gtest', '../third_party/icu/icu.gyp:icui18n', '../third_party/icu/icu.gyp:icuuc', @@ -800,7 +800,7 @@ '../chrome/chrome.gyp:installer_util', '../google_update/google_update.gyp:google_update', # Make the archive build happy. - '../sync/sync.gyp:syncapi_core', + '../sync/sync.gyp:sync_api', # Crash Reporting 'crash_reporting/crash_reporting.gyp:crash_report', ], @@ -923,7 +923,7 @@ '../chrome/chrome.gyp:installer_util', '../google_update/google_update.gyp:google_update', # Make the archive build happy. - '../sync/sync.gyp:syncapi_core', + '../sync/sync.gyp:sync_api', # Crash Reporting 'crash_reporting/crash_reporting.gyp:crash_report', ], |