forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prebid Core: Library support (prebid#8527)
* adds extra utils * imports from extra utils * adds libraries to .submodules * adds libraries to build process * renames extraUtils * update userId submodules list
- Loading branch information
1 parent
e364dda
commit d661ea2
Showing
9 changed files
with
168 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** | ||
* Returns the origin | ||
*/ | ||
export function getOrigin() { | ||
// IE10 does not have this property. https://gist.github.com/hbogs/7908703 | ||
if (!window.location.origin) { | ||
return window.location.protocol + '//' + window.location.hostname + (window.location.port ? ':' + window.location.port : ''); | ||
} else { | ||
return window.location.origin; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,85 @@ | ||
{ | ||
"userId": [ | ||
"33acrossIdSystem", | ||
"admixerIdSystem", | ||
"adtelligentIdSystem", | ||
"amxIdSystem", | ||
"britepoolIdSystem", | ||
"connectIdSystem", | ||
"cpexIdSystem", | ||
"criteoIdSystem", | ||
"dacIdSystem", | ||
"deepintentDpesIdSystem", | ||
"dmdIdSystem", | ||
"fabrickIdSystem", | ||
"hadronIdSystem", | ||
"id5IdSystem", | ||
"ftrackIdSystem", | ||
"identityLinkIdSystem", | ||
"idxIdSystem", | ||
"imuIdSystem", | ||
"intentIqIdSystem", | ||
"justIdSystem", | ||
"kinessoIdSystem", | ||
"liveIntentIdSystem", | ||
"lotamePanoramaIdSystem", | ||
"merkleIdSystem", | ||
"mwOpenLinkIdSystem", | ||
"naveggIdSystem", | ||
"netIdSystem", | ||
"novatiqIdSystem", | ||
"parrableIdSystem", | ||
"pubProvidedIdSystem", | ||
"publinkIdSystem", | ||
"quantcastIdSystem", | ||
"sharedIdSystem", | ||
"tapadIdSystem", | ||
"trustpidSystem", | ||
"uid2IdSystem", | ||
"unifiedIdSystem", | ||
"verizonMediaIdSystem", | ||
"zeotapIdPlusIdSystem", | ||
"adqueryIdSystem", | ||
"gravitoIdSystem" | ||
], | ||
"adpod": [ | ||
"freeWheelAdserverVideo", | ||
"dfpAdServerVideo" | ||
], | ||
"rtdModule": [ | ||
"airgridRtdProvider", | ||
"akamaiDapRtdProvider", | ||
"browsiRtdProvider", | ||
"dgkeywordRtdProvider", | ||
"geoedgeRtdProvider", | ||
"hadronRtdProvider", | ||
"haloRtdProvider", | ||
"iasRtdProvider", | ||
"jwplayerRtdProvider", | ||
"medianetRtdProvider", | ||
"optimeraRtdProvider", | ||
"permutiveRtdProvider", | ||
"reconciliationRtdProvider", | ||
"sirdataRtdProvider", | ||
"timeoutRtdProvider", | ||
"weboramaRtdProvider" | ||
], | ||
"fpdModule": [ | ||
"enrichmentFpdModule", | ||
"validationFpdModule" | ||
] | ||
"parentModules": { | ||
"userId": [ | ||
"33acrossIdSystem", | ||
"admixerIdSystem", | ||
"adtelligentIdSystem", | ||
"amxIdSystem", | ||
"britepoolIdSystem", | ||
"connectIdSystem", | ||
"cpexIdSystem", | ||
"criteoIdSystem", | ||
"dacIdSystem", | ||
"deepintentDpesIdSystem", | ||
"dmdIdSystem", | ||
"fabrickIdSystem", | ||
"hadronIdSystem", | ||
"id5IdSystem", | ||
"ftrackIdSystem", | ||
"identityLinkIdSystem", | ||
"idxIdSystem", | ||
"imuIdSystem", | ||
"intentIqIdSystem", | ||
"justIdSystem", | ||
"kinessoIdSystem", | ||
"liveIntentIdSystem", | ||
"lotamePanoramaIdSystem", | ||
"merkleIdSystem", | ||
"mwOpenLinkIdSystem", | ||
"naveggIdSystem", | ||
"netIdSystem", | ||
"novatiqIdSystem", | ||
"parrableIdSystem", | ||
"pubProvidedIdSystem", | ||
"publinkIdSystem", | ||
"quantcastIdSystem", | ||
"sharedIdSystem", | ||
"tapadIdSystem", | ||
"trustpidSystem", | ||
"uid2IdSystem", | ||
"unifiedIdSystem", | ||
"verizonMediaIdSystem", | ||
"zeotapIdPlusIdSystem", | ||
"adqueryIdSystem", | ||
"gravitoIdSystem" | ||
], | ||
"adpod": [ | ||
"freeWheelAdserverVideo", | ||
"dfpAdServerVideo" | ||
], | ||
"rtdModule": [ | ||
"airgridRtdProvider", | ||
"akamaiDapRtdProvider", | ||
"browsiRtdProvider", | ||
"dgkeywordRtdProvider", | ||
"geoedgeRtdProvider", | ||
"hadronRtdProvider", | ||
"haloRtdProvider", | ||
"iasRtdProvider", | ||
"jwplayerRtdProvider", | ||
"medianetRtdProvider", | ||
"optimeraRtdProvider", | ||
"permutiveRtdProvider", | ||
"reconciliationRtdProvider", | ||
"sirdataRtdProvider", | ||
"timeoutRtdProvider", | ||
"weboramaRtdProvider" | ||
], | ||
"fpdModule": [ | ||
"enrichmentFpdModule", | ||
"validationFpdModule" | ||
] | ||
}, | ||
"libraries": { | ||
"getOrigin": { | ||
"files": [ | ||
"./index.js" | ||
], | ||
"dependants": [ | ||
"ooloAnalyticsAdapter", | ||
"resetdigitalBidAdapter", | ||
"rtbhouseBidAdapter.js" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters