Merge lp:~mvo/oxide/crossbuild-friendly into lp:~oxide-developers/oxide/oxide.trunk

Proposed by Michael Vogt
Status: Work in progress
Proposed branch: lp:~mvo/oxide/crossbuild-friendly
Merge into: lp:~oxide-developers/oxide/oxide.trunk
Diff against target: 19867 lines (+19800/-0)
13 files modified
debian/changelog (+240/-0)
debian/compat (+1/-0)
debian/control (+149/-0)
debian/copyright (+19225/-0)
debian/liboxideqt-qmlplugin.install (+1/-0)
debian/liboxideqtcore0.install (+6/-0)
debian/oxideqmlscene.install (+1/-0)
debian/oxideqt-codecs-extra.install (+1/-0)
debian/patches/gross-hack-for-dual-ffmpeg-build.patch (+108/-0)
debian/patches/series (+1/-0)
debian/rules (+40/-0)
debian/source.lintian-overrides (+26/-0)
debian/source/format (+1/-0)
To merge this branch: bzr merge lp:~mvo/oxide/crossbuild-friendly
Reviewer Review Type Date Requested Status
Chris Coulson Pending
Review via email: mp+234093@code.launchpad.net

Description of the change

My goal is to be able to install ubuntu-sdk-libs-dev:armhf in a chroot. One problem right now is the hard dependency of liboxide on oxideqt-codecs|oxideqt-codecs-extra and (oddly enough) the conflict between them.

I end up in a situation where apt tries to install oxideqt-codecs-extra:armhf and oxideqt-codecs:amd64. They conlict which prevents the install.

One solution is to make them a recommend which may not be ideal if the codecs are indeed a hard dependency.

The other would be (and I'm happy to submit a new branch for this) to make the conflicts between oxideqt-codec arch specific as its fine to mix oxideqt-codecs:ARCH-1 and oxideqt-codecs-extra:ARCH-2 due to the different multiarch dir. So something like:
"""
Package: oxideqt-codecs
Conflicts: oxideqt-codecs-extra:${Arch}
...
Package: oxideqt-codecs-extra
Conflicts: oxideqt-codecs:${Arch}
"""
may work as well.

Ideally the codecs would just complement each other :) But I guess thats quite a bit more work.

So please let me know if you prefer the recommends approach or the arch specific conflicts.

Thanks,
 Michael

To post a comment you must log in.
Revision history for this message
Chris Coulson (chrisccoulson) wrote :

Thanks for this.

Note, we have separate packaging branches for Oxide, so this should be proposed in to one of those :)

Have you tested what happens if either of the codecs packages aren't installed? (Particularly when viewing pages that contain audio or video)

Unmerged revisions

37. By Michael Vogt

make oxideqt-codecs/oxideqt-codecs-extra a recommends instead of a dependency to make it more cross build friendly

36. By Chris Coulson

releasing package oxide-qt version 1.2.0~bzr683-0ubuntu1

35. By Chris Coulson

* Update to snapshot r683 from trunk
  - Bump Chromium rev to 38.0.2114.2
  - Don't modify Chromium's EGL implementation to select the GLES API when
    creating contexts and calling eglMakeCurrent. These calls all happen
    on a dedicated GPU thread with no application code running on it, and
    the selected API is thread-local. We do still need to temporarily select
    GLES at startup where we make the first few calls on the UI thread,
    but we restore the originally selected API once done (only affects
    Unity 8 desktop)
  - Fix LP: #1286204 - Make double-tap-to-zoom work
  - Adjust ui::ScaleGestureDetector::Config::min_pinch_update_span_delta to
    remove the coarseness when pinching
  - Fix LP: #1285750 - Add support for building a chromedriver binary
  - Add OXIDE_DISABLE_SETUID_SANDBOX and OXIDE_DISABLE_SECCOMP_FILTER_SANDBOX
    environment variables
  - Assert we have a QGuiApplication on startup
  - Fix LP: #1347924 - QProcess::waitForFinished() hangs - stop using
    ContentMainRunner for starting the browser code - it does things with
    process global state that are unexpected in a public library (eg,
    setting the SIGCHLD handler to the default which breaks QProcess because
    it relies on its own custom handler). We do still set the SIGPIPE action
    to SIG_IGN, but only if it is SIG_DFL when we start. We also abort if the
    SIGCHLD action is SIG_IGN when we initialize
  - Fix LP: #1352952 - Ensure files returned by the file picker exist
  - Fix LP: #1349510 - Browser crashes when attaching a photo in GMail -
    when checking for an override for navigator.userAgent, limit the length
    of the URL sent across IPC by trimming off the fragment, username and
    password
  - Add WebContext.cookieManager API
* Refresh debian/patches/gross-hack-for-dual-ffmpeg-build.patch

34. By Chris Coulson

releasing package oxide-qt version 1.1.1-0ubuntu2

33. By Chris Coulson

releasing package oxide-qt version 1.1.1-0ubuntu1

32. By Chris Coulson

* Update to v1.1.1
  - Bump Chromium rev to 37.0.2062.58
  - Fix LP: #1337389 - Make ContentBrowserClient::CanCreateWindow work
    again
  - Fix LP: #1332996 - QtCreator often halts for a minute. Don't crash on
    Qt platforms that don't implement QPlatformNativeInterface. As we can't
    get a native display handle on these platforms, disallow any GL
    implementation in Chromium and guard against accesses to
    BrowserProcessMain::GetNativeDisplay()
* Build with GCC 4.8 for now because GCC 4.9 breaks web content layout on
  the device, which sucks quite a lot right before RTM
  - update debian/rules
  - update debian/control

31. By Chris Coulson

releasing package oxide-qt version 1.1.0-0ubuntu1

30. By Chris Coulson

* Update to v1.1.0
  - Bump Chromium rev to 37.0.2062.44
  - Fix LP: #1337338 - Don't crash when destroying a visible RWHV, which
    happens when a render process crashes
  - Fix LP: #1337890 - Update the power save blocker to use the Unity API
    on touch devices
  - Fix LP: #1338639 - Don't crash when calling WebView.loadHtml() before
    the webview is fully constructed

29. By Olivier Tilloy

Add back changes that were accidentally removed when 1.1.0 was published in the archive.

28. By Chris Coulson

releasing package oxide-qt version 1.1.0~bzr640-0ubuntu1

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added directory 'debian'
2=== added file 'debian/changelog'
3--- debian/changelog 1970-01-01 00:00:00 +0000
4+++ debian/changelog 2014-09-10 12:16:15 +0000
5@@ -0,0 +1,240 @@
6+oxide-qt (1.2.0~bzr683-0ubuntu2) UNRELEASED; urgency=low
7+
8+ * debian/control:
9+ - make oxideqt-codecs for liboxideqtcore0 a recommends instead of
10+ a hard dependency to make the lib more cross-build friendly
11+
12+ -- Michael Vogt <michael.vogt@ubuntu.com> Tue, 02 Sep 2014 11:54:29 +0200
13+
14+oxide-qt (1.2.0~bzr683-0ubuntu1) utopic; urgency=medium
15+
16+ * Update to snapshot r683 from trunk
17+ - Bump Chromium rev to 38.0.2114.2
18+ - Don't modify Chromium's EGL implementation to select the GLES API when
19+ creating contexts and calling eglMakeCurrent. These calls all happen
20+ on a dedicated GPU thread with no application code running on it, and
21+ the selected API is thread-local. We do still need to temporarily select
22+ GLES at startup where we make the first few calls on the UI thread,
23+ but we restore the originally selected API once done (only affects
24+ Unity 8 desktop)
25+ - Fix LP: #1286204 - Make double-tap-to-zoom work
26+ - Adjust ui::ScaleGestureDetector::Config::min_pinch_update_span_delta to
27+ remove the coarseness when pinching
28+ - Fix LP: #1285750 - Add support for building a chromedriver binary
29+ - Add OXIDE_DISABLE_SETUID_SANDBOX and OXIDE_DISABLE_SECCOMP_FILTER_SANDBOX
30+ environment variables
31+ - Assert we have a QGuiApplication on startup
32+ - Fix LP: #1347924 - QProcess::waitForFinished() hangs - stop using
33+ ContentMainRunner for starting the browser code - it does things with
34+ process global state that are unexpected in a public library (eg,
35+ setting the SIGCHLD handler to the default which breaks QProcess because
36+ it relies on its own custom handler). We do still set the SIGPIPE action
37+ to SIG_IGN, but only if it is SIG_DFL when we start. We also abort if the
38+ SIGCHLD action is SIG_IGN when we initialize
39+ - Fix LP: #1352952 - Ensure files returned by the file picker exist
40+ - Fix LP: #1349510 - Browser crashes when attaching a photo in GMail -
41+ when checking for an override for navigator.userAgent, limit the length
42+ of the URL sent across IPC by trimming off the fragment, username and
43+ password
44+ - Add WebContext.cookieManager API
45+ * Refresh debian/patches/gross-hack-for-dual-ffmpeg-build.patch
46+
47+ -- Chris Coulson <chris.coulson@canonical.com> Tue, 12 Aug 2014 15:01:03 +0100
48+
49+oxide-qt (1.1.1-0ubuntu3) utopic; urgency=medium
50+
51+ * Update to v1.1.1
52+ - Bump Chromium rev to 37.0.2062.58
53+ - Fix LP: #1337389 - Make ContentBrowserClient::CanCreateWindow work
54+ again
55+ - Fix LP: #1332996 - QtCreator often halts for a minute. Don't crash on
56+ Qt platforms that don't implement QPlatformNativeInterface. As we can't
57+ get a native display handle on these platforms, disallow any GL
58+ implementation in Chromium and guard against accesses to
59+ BrowserProcessMain::GetNativeDisplay()
60+ * Build with GCC 4.8 for now because GCC 4.9 breaks web content layout on
61+ the device, which sucks quite a lot right before RTM
62+ - update debian/rules
63+ - update debian/control
64+
65+ -- Chris Coulson <chris.coulson@canonical.com> Thu, 31 Jul 2014 10:41:43 +0100
66+
67+oxide-qt (1.1.0-0ubuntu1) utopic; urgency=medium
68+
69+ * Update to v1.1.0
70+ - Bump Chromium rev to 37.0.2062.44
71+ - Fix LP: #1337338 - Don't crash when destroying a visible RWHV, which
72+ happens when a render process crashes
73+ - Fix LP: #1337890 - Update the power save blocker to use the Unity API
74+ on touch devices
75+ - Fix LP: #1338639 - Don't crash when calling WebView.loadHtml() before
76+ the webview is fully constructed
77+
78+ -- Chris Coulson <chris.coulson@canonical.com> Tue, 29 Jul 2014 15:00:10 +0100
79+
80+oxide-qt (1.1.0~bzr640-0ubuntu1) utopic; urgency=medium
81+
82+ * Update to trunk snapshot r640
83+ - Bump Chromium to 37.0.2062.3
84+ - Fix LP: #1244373 - Screen blanks during video playback. Use the powerd
85+ API for now on the device
86+ - Fix LP: #1259216 - Expose WebView.icon property
87+ - Fix LP: #1282063 - Add WebView.downloadRequested API
88+ - Fix LP: #1307709 - webbrowser-app doesn't start in Unity 8 desktop
89+ preview session. Fix this by using surfaceless EGL (pbuffers not supported
90+ in the Mir EGL platform for mesa) and ensuring we always bind the
91+ GLES API on Chromium's GPU thread
92+ - Fix LP: #1312082 - Stop using deprecated compositing paths in Chromium
93+ - Fix LP: #1323743 - OSK doesn't display after some time. Add a workaround
94+ for this in Oxide for the time being
95+ - Fix LP: #1324909 - User agent string is incorrect in newly opened
96+ webviews and subframes
97+ - Fix LP: #1332754 - Allow the frontbuffer and delegated frame data for
98+ hidden webviews to be evicted
99+ - Fix LP: #1252302 - Add devtools support
100+ - Fix LP: #1312081 - Render content and handle input events directly in
101+ the WebView, rather than having a per-process RenderViewItem
102+ - Fix LP: #1330511 - Expose a Flickable-like API on WebView
103+ - An empty preedit string in IM events doesn't mean we should do a commit.
104+ Fixes an issue where deleting the last character of a composition does
105+ a commit instead, causing the deletion to appear to fail
106+ - Notify the IM of updates to cursor and anchor positions
107+ * Refresh debian/patches/gross-hack-for-dual-ffmpeg-build.patch
108+
109+ -- Chris Coulson <chris.coulson@canonical.com> Thu, 03 Jul 2014 09:52:30 +0100
110+
111+oxide-qt (1.0.2-0ubuntu3) utopic; urgency=medium
112+
113+ * Rebuild against Qt 5.3.0
114+ * Change maintainer to Ubuntu Developers
115+
116+ -- Timo Jyrinki <timo-jyrinki@ubuntu.com> Wed, 18 Jun 2014 05:49:32 +0000
117+
118+oxide-qt (1.0.2-0ubuntu2) utopic; urgency=medium
119+
120+ * Update to v1.0.2
121+ - Bump Chromium to 36.0.1985.49
122+ - Add experimental support for the Google Talk PPAPI plugin, to support
123+ Google Hangouts. This is hidden behind an environment variable that
124+ defaults to off (LP: #1308397)
125+ - Fix crash in oxide::GetFormFactorHint() on Unity 8 desktop preview
126+ (LP: #1308398)
127+ - Fix various issues in GPU related code, including a crash (LP: #1308412)
128+ - Set no_javascript_access in ContentBrowserClient::CanCreateWindow()
129+ to fix random window opening failures (LP: #1307735)
130+ - Add fullscreen API to WebView (LP: #1308947)
131+ - Set a wait cursor when loading
132+ - Add geolocation support
133+ - Add a WebView.geolocationPermissionRequested API
134+ - Allow unhandled key events to bubble up from the WebView (LP: #1313727)
135+ - Don't generate keypress events with unmodified text for control
136+ characters. This makes Oxide behave more like Chrome
137+ - Add WebView.loadHtml() (LP: #1320848)
138+ - Ensure we update the visibility in a renderer when a WebView is created
139+ initially hidden and then made visible before any content is loaded
140+ (LP: #1322622)
141+ - Build fixes for Qt 5.3
142+ - Display controls in media player (LP: #1326852)
143+ * Refresh debian/patches/gross-hack-for-dual-ffmpeg-build.patch
144+ * Don't build with ENABLE_OXIDEQMLSCENE now, as that's the default
145+ - update debian/rules
146+ * Update build dependencies - we now depend on ninja
147+
148+ -- Chris Coulson <chris.coulson@canonical.com> Wed, 16 Apr 2014 09:54:56 +0100
149+
150+oxide-qt (1.0.0~bzr501-0ubuntu1) trusty; urgency=medium
151+
152+ * Update to r501
153+ - Update to Chromium 35.0.1916.27
154+ - Use GpuDataManager for checking feature support before enabling
155+ compositing (although, there's no GPU blacklist support yet)
156+ - When resizing in non-compositing mode, handle the case where a site is
157+ slow to repaint and Chromium gives us a backing store for the old size
158+ - In compositing mode, make sure we composite during resizes
159+ - Fix a crash during resize caused by us sending more than one acknowledge
160+ for a buffer swap
161+ * Don't advertise support for codecs that aren't supported by the
162+ oxideqt-codecs* package installed
163+ - add debian/patches/gross-hack-for-dual-ffmpeg-build.patch
164+
165+ -- Chris Coulson <chris.coulson@canonical.com> Thu, 10 Apr 2014 20:44:06 +0100
166+
167+oxide-qt (1.0.0~bzr490-0ubuntu1) trusty; urgency=medium
168+
169+ * Update to r490
170+ - Build with enable_plugins: 0 and toolkit_views: 0 to trim the size
171+ a bit
172+ - Ensure subframe navigations that require a new window become top-level
173+ navigations for webviews that don't implement WebView.newViewRequested
174+ - Add an option for enabling proprietary codecs (ENABLE_PROPRIETARY_CODECS)
175+ - Build and install the l10n pak files
176+ - Add file picker support (LP: #1260008)
177+ - Add some resources to oxide.pak that were missing (eg, directory listing
178+ HTML)
179+ - Fix a crash that occurs when handling events from some mouse buttons
180+ - Add cursor support (LP: #1257662)
181+ - Reimplement Chromium's RenderSandboxHostLinux so that it runs the sandbox
182+ IPC helper process as a proper child process rather than just forking
183+ the browser process, which is dangerous for Oxide (LP: #1304648)
184+ * Split libffmpegsumo.so in to 2 separate packages (oxideqt-codecs and
185+ oxideqt-codecs-extra) (LP: #1301341)
186+
187+ -- Chris Coulson <chris.coulson@canonical.com> Tue, 08 Apr 2014 15:27:09 +0100
188+
189+oxide-qt (1.0.0~bzr475-0ubuntu1) trusty; urgency=medium
190+
191+ * Update to r475
192+ - Update to Chromium 35.0.1916.6
193+ - If WebView.newViewRequested isn't implemented, navigations should happen
194+ in the originating view
195+ - Refine WebView.newViewRequested and WebView.navigationRequested API's
196+ (LP: #1300891)
197+ - Improve the form factor detection (LP: #1301678)
198+ - Add WebView.javaScriptConsoleMessage signal to allow the application
199+ to intercept console messages from content (LP: #1291389)
200+ - Improve the LoadEvent API
201+ - Fix an abort when setting WebContext.sessionCookieMode on a context
202+ that has no path (LP: #1301650)
203+ - Expose the default WebContext via Oxide.defaultWebContext() (LP: #1297552)
204+ - Send fake keydown and keyup events when composing text with an
205+ input method (LP: #1300382)
206+ - Bump the API version to 1.0
207+
208+ -- Chris Coulson <chris.coulson@canonical.com> Fri, 04 Apr 2014 19:28:27 +0100
209+
210+oxide-qt (1.0.0~bzr452-0ubuntu1) trusty; urgency=medium
211+
212+ * Update to r452
213+ - Add WebView.newViewRequested API (LP: #1240749)
214+ - Add WebView.navigationRequested API (LP: #1259219)
215+ - Turn off WebCore debug symbols on native ARM builds, because we keep
216+ hitting linker OOM conditions. These are also omitted from our
217+ Chromium builds
218+ - Don't ignore WebContext.cachePath (LP: #1298264)
219+ - Add WebContext.sessionCookieMode API
220+
221+ -- Chris Coulson <chris.coulson@canonical.com> Tue, 01 Apr 2014 13:13:51 +0100
222+
223+oxide-qt (1.0.0~bzr448-0ubuntu1) trusty; urgency=medium
224+
225+ [ Chris Coulson ]
226+ * Update to r447
227+ - Rebase on Chromium 35.0.1908.4
228+ - Add support for JS dialogs (LP: #1214035)
229+ - Don't delete an active popup menu when another view is deleted
230+ (LP: #1257663)
231+ - Fix an invalid read and a memory corruption bug found by Valgrind
232+ - Chromium needs to create GLX contexts with idenitcal attributes to
233+ the GLX context created by Qt (LP: #1300284)
234+
235+ [ Jamie Strandboge ]
236+ * merge debian/changelog and debian/changelog.chromium to be more clear
237+ (LP: #1297020)
238+
239+ -- Chris Coulson <chris.coulson@canonical.com> Fri, 28 Mar 2014 13:23:13 +0000
240+
241+oxide-qt (1.0.0~bzr437-0ubuntu1) trusty; urgency=low
242+
243+ * Initial upload
244+
245+ -- Chris Coulson <chris.coulson@canonical.com> Mon, 24 Mar 2014 16:41:47 +0000
246
247=== added file 'debian/compat'
248--- debian/compat 1970-01-01 00:00:00 +0000
249+++ debian/compat 2014-09-10 12:16:15 +0000
250@@ -0,0 +1,1 @@
251+8
252
253=== added file 'debian/control'
254--- debian/control 1970-01-01 00:00:00 +0000
255+++ debian/control 2014-09-10 12:16:15 +0000
256@@ -0,0 +1,149 @@
257+Source: oxide-qt
258+Section: libs
259+Priority: extra
260+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
261+Build-Depends: debhelper (>= 8.0.0),
262+ cmake,
263+ qt5-qmake,
264+ qt5-default,
265+ qtdeclarative5-dev,
266+ qtbase5-private-dev,
267+ qtdeclarative5-private-dev,
268+ qtpositioning5-dev,
269+ ninja-build,
270+ python,
271+ pkg-config,
272+ libglib2.0-dev,
273+ libnss3-dev,
274+ libpci-dev,
275+ libgcrypt11-dev,
276+ libdbus-1-dev,
277+ libudev-dev,
278+ libpulse-dev,
279+ libasound2-dev,
280+ libx11-dev,
281+ libxi-dev,
282+ libcap-dev,
283+ libdrm-dev,
284+ libfontconfig1-dev,
285+ libfreetype6-dev,
286+ libpango1.0-dev,
287+ libxext-dev,
288+ libxcomposite-dev,
289+ libxrender-dev,
290+ libkrb5-dev,
291+ libssl-dev,
292+ gperf,
293+ bison,
294+ xvfb,
295+ qtdeclarative5-qtquick2-plugin,
296+ qtdeclarative5-test-plugin,
297+ g++-4.8
298+Standards-Version: 3.9.5
299+Homepage: https://launchpad.net/oxide
300+
301+Package: liboxideqtcore0
302+Architecture: any
303+Multi-Arch: same
304+Depends: ${shlibs:Depends}, ${misc:Depends}
305+Recommends: oxideqt-codecs (= ${binary:Version}) | oxideqt-codecs-extra (= ${binary:Version})
306+Description: Web browser engine library for Qt (core)
307+ Oxide is a web browser engine library based on Google Chromium, that makes
308+ it easy to embed web content in your Qt application
309+ .
310+ This package provides the core library, sandbox, renderer and support
311+ files required to run applications with Oxide
312+
313+Package: liboxideqt-qmlplugin
314+Architecture: any
315+Multi-Arch: same
316+Depends: ${shlibs:Depends}, ${misc:Depends},
317+ liboxideqtcore0 (= ${binary:Version})
318+Description: Web browser engine library for Qt (QML plugin)
319+ Oxide is a web browser engine library based on Google Chromium, that makes
320+ it easy to embed web content in your Qt application
321+ .
322+ This package provides the QML plugin required to run QML applications with
323+ Oxide
324+
325+Package: oxideqmlscene
326+Section: misc
327+Architecture: any
328+Depends: ${shlibs:Depends}, ${misc:Depends}
329+Description: Web browser engine library for Qt (QML application runner)
330+ Oxide is a web browser engine library based on Google Chromium, that makes
331+ it easy to embed web content in your Qt application
332+ .
333+ This package provides an application runner which is similar to qmlscene,
334+ required to run QML applications with Oxide if you require support for
335+ accelerated compositing
336+
337+Package: oxideqt-dbg
338+Architecture: any
339+Section: debug
340+Depends: ${misc:Depends},
341+ liboxideqtcore0 (= ${binary:Version}),
342+ liboxideqt-qmlplugin (= ${binary:Version})
343+Description: Web browser engine library for Qt (Debug symbols)
344+ Oxide is a web browser engine library based on Google Chromium, that makes
345+ it easy to embed web content in your Qt application
346+ .
347+ This package provides the debugging symbols for Oxide
348+
349+Package: oxideqt-codecs
350+Architecture: any
351+Multi-Arch: same
352+Depends: ${shlibs:Depends}, ${misc:Depends}
353+Conflicts: oxideqt-codecs-extra
354+Breaks: liboxideqtcore0 (<< 1.0.0~bzr488)
355+Replaces: oxideqt-codecs-extra, liboxideqtcore0 (<< 1.0.0~bzr488)
356+Description: Web browser engine library for Qt (codecs)
357+ Oxide is a web browser engine library based on Google Chromium, that makes
358+ it easy to embed web content in your Qt application
359+ .
360+ This package provides some media codecs needed for the HTML5 <audio> and
361+ <video> tags. Included are the free Theora, Vorbis, Opus, VP8 and VP9
362+ codecs
363+
364+Package: oxideqt-codecs-dbg
365+Architecture: any
366+Section: debug
367+Depends: ${misc:Depends},
368+ oxideqt-codecs (= ${binary:Version})
369+Conflicts: oxideqt-codecs-extra-dbg
370+Breaks: oxideqt-dbg (<< 1.0.0~bzr488)
371+Replaces: oxideqt-codecs-extra-dbg, oxideqt-dbg (<< 1.0.0~bzr488)
372+Description: Web browser engine library for Qt (Debug symbols)
373+ Oxide is a web browser engine library based on Google Chromium, that makes
374+ it easy to embed web content in your Qt application
375+ .
376+ This package provides the debugging symbols for Oxide
377+
378+Package: oxideqt-codecs-extra
379+Architecture: any
380+Multi-Arch: same
381+Depends: ${shlibs:Depends}, ${misc:Depends}
382+Conflicts: oxideqt-codecs
383+Breaks: liboxideqtcore0 (<< 1.0.0~bzr488)
384+Replaces: oxideqt-codecs, liboxideqtcore0 (<< 1.0.0~bzr488)
385+Description: Web browser engine library for Qt (codecs)
386+ Oxide is a web browser engine library based on Google Chromium, that makes
387+ it easy to embed web content in your Qt application
388+ .
389+ This package provides some media codecs needed for the HTML5 <audio> and
390+ <video> tags. Included are the Theora, Vorbis, Opus, VP8, VP9, MP3, AAC
391+ and H.264 codecs
392+
393+Package: oxideqt-codecs-extra-dbg
394+Architecture: any
395+Section: debug
396+Depends: ${misc:Depends},
397+ oxideqt-codecs-extra (= ${binary:Version})
398+Conflicts: oxideqt-codecs-dbg
399+Breaks: oxideqt-dbg (<< 1.0.0~bzr488)
400+Replaces: oxideqt-codecs-dbg, oxideqt-dbg (<< 1.0.0~bzr488)
401+Description: Web browser engine library for Qt (Debug symbols)
402+ Oxide is a web browser engine library based on Google Chromium, that makes
403+ it easy to embed web content in your Qt application
404+ .
405+ This package provides the debugging symbols for Oxide
406
407=== added file 'debian/copyright'
408--- debian/copyright 1970-01-01 00:00:00 +0000
409+++ debian/copyright 2014-09-10 12:16:15 +0000
410@@ -0,0 +1,19225 @@
411+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
412+Name: Oxide Webview
413+Maintainer: Oxide Developers Team <oxide@lists.launchpad.net>
414+Source: https://code.launchpad.net/~oxide-developers/oxide/oxide.trunk
415+
416+Files: *
417+Copyright: 2013-2014 Canonical Ltd
418+License: LGPL (v2.1 or later)
419+
420+Files: chromium/src/{PRESUBMIT.py}
421+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
422+License: global BSD-style Chromium
423+
424+Files: chromium/src/app/{animation.cc,animation_unittest.cc,drag_drop_types_win.cc,l10n_util.cc,l10n_util.h,l10n_util_dummy.cc,l10n_util_unittest.cc,resource_bundle_linux.cc,resource_bundle_win.cc,run_all_unittests.cc,slide_animation.cc,slide_animation.h,throb_animation.cc,throb_animation.h,tree_node_iterator.h,tree_node_iterator_unittest.cc,tree_node_model.h,win_util_unittest.cc}
425+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
426+License: global BSD-style Chromium
427+
428+Files: chromium/src/app/{resource_bundle.cc,resource_bundle.h,resource_bundle_dummy.cc,win_util.h}
429+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
430+License: global BSD-style Chromium
431+
432+Files: chromium/src/app/{PRESUBMIT.py,active_window_watcher_x.cc,active_window_watcher_x.h,animation.h,app_paths.cc,app_paths.h,app_switches.cc,app_switches.h,combobox_model.h,drag_drop_types.h,drag_drop_types_gtk.cc,gtk_dnd_util.cc,gtk_dnd_util.h,hi_res_timer_manager.h,hi_res_timer_manager_posix.cc,hi_res_timer_manager_win.cc,l10n_util_mac.h,l10n_util_posix.cc,l10n_util_win.cc,l10n_util_win.h,message_box_flags.h,os_exchange_data.cc,os_exchange_data.h,os_exchange_data_provider_gtk.cc,os_exchange_data_provider_gtk.h,os_exchange_data_provider_win.cc,os_exchange_data_provider_win.h,os_exchange_data_win_unittest.cc,resource_bundle_posix.cc,scoped_handle_gtk.h,system_monitor.cc,system_monitor.h,system_monitor_posix.cc,system_monitor_unittest.cc,system_monitor_win.cc,table_model.cc,table_model.h,table_model_observer.h,test_suite.h,theme_provider.cc,theme_provider.h,tree_model.h,win_util.cc,win_util_path.cc}
433+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
434+License: global BSD-style Chromium
435+
436+Files: chromium/src/app/clipboard/*
437+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
438+License: global BSD-style Chromium
439+
440+Files: chromium/src/app/clipboard/*
441+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
442+License: global BSD-style Chromium
443+
444+Files: chromium/src/app/gfx/{canvas.cc,canvas.h,canvas_win.cc,color_utils_unittest.cc,favicon_size.h,font.h,font_gtk.cc,font_skia.cc,font_unittest.cc,font_win.cc,icon_util.cc,icon_util.h,icon_util_unittest.cc,insets.h,path_gtk.cc,path_win.cc,text_elider.h,text_elider_unittest.cc}
445+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
446+License: global BSD-style Chromium
447+
448+Files: chromium/src/app/gfx/{font_util.h}
449+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
450+License: global BSD-style Chromium
451+
452+Files: chromium/src/app/gfx/{blit.cc,blit.h,canvas_linux.cc,canvas_paint.h,color_utils.cc,color_utils.h,font_util.cc,gdi_util.cc,gdi_util.h,gtk_native_view_id_manager.cc,gtk_native_view_id_manager.h,gtk_util.cc,gtk_util.h,insets.cc,insets_unittest.cc,native_theme_win.cc,native_theme_win.h,native_theme_win_unittest.cc,native_widget_types.h,native_widget_types_gtk.cc,path.cc,path.h,scrollbar_size.cc,scrollbar_size.h,skbitmap_operations.cc,skbitmap_operations.h,skbitmap_operations_unittest.cc,text_elider.cc}
453+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
454+License: global BSD-style Chromium
455+
456+Files: chromium/src/app/gfx/codec/*
457+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
458+License: global BSD-style Chromium
459+
460+Files: chromium/src/app/gfx/codec/*
461+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
462+License: global BSD-style Chromium
463+
464+Files: chromium/src/app/menus/{accelerator.h,accelerator_gtk.h,menu_model.cc,menu_model.h,simple_menu_model.cc,simple_menu_model.h}
465+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
466+License: global BSD-style Chromium
467+
468+Files: chromium/src/app/sql/{connection.cc,connection.h,connection_unittest.cc,init_status.h,meta_table.cc,meta_table.h,statement.cc,statement.h,statement_unittest.cc,transaction.cc,transaction.h,transaction_unittest.cc}
469+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
470+License: global BSD-style Chromium
471+
472+Files: chromium/src/app/test/data/{resource.h}
473+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
474+License: global BSD-style Chromium
475+
476+Files: chromium/src/app/win/{window_impl.cc,window_impl.h}
477+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
478+License: global BSD-style Chromium
479+
480+Files: chromium/src/base/*
481+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved / 2006 Michael Emmel mike.emmel@gmail.com. All rights reserved / 2008, 2009 Google Inc:
482+License: BSD (2 clause)
483+
484+Files: chromium/src/base/*
485+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved / 2008 Collabora, Ltd. All rights reserved / 2006 Michael Emmel mike.emmel@gmail.com / 2006, 2007 Apple Inc. All rights reserved / 2007 Holger Hans Peter Freyther / 2008, 2009 Google Inc:
486+License: BSD (2 clause)
487+
488+Files: chromium/src/base/{debug_util_posix.cc}
489+Copyright: Copyright: 2006-2009 The Chromium Authors. All rights reserved:
490+License: GENERATED FILE
491+
492+Files: chromium/src/base/{md5.cc}
493+Copyright: Copyright: 2006 Google Inc. All Rights Reserved / is claimed:
494+License: Public domain
495+
496+Files: chromium/src/base/{version.h}
497+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
498+License: ZERO-CODE-FILES or GENERATED
499+
500+Files: chromium/src/base/{at_exit.cc,at_exit.h,at_exit_unittest.cc,atomic_ref_count.h,atomic_sequence_num.h,atomicops.h,atomicops_internals_x86_gcc.cc,atomicops_internals_x86_gcc.h,atomicops_internals_x86_macosx.h,atomicops_internals_x86_msvc.h,atomicops_unittest.cc,base64.cc,base64.h,base64_unittest.cc,base_drag_source.cc,base_drag_source.h,base_drop_target.cc,base_drop_target.h,base_paths.cc,base_paths.h,base_paths_mac.h,base_paths_posix.cc,base_paths_win.cc,base_paths_win.h,base_switches.cc,base_switches.h,basictypes.h,bzip2_error_handler.cc,command_line.cc,command_line.h,command_line_unittest.cc,compiler_specific.h,condition_variable.h,condition_variable_posix.cc,condition_variable_unittest.cc,condition_variable_win.cc,cpu.cc,cpu.h,debug_message.cc,debug_on_start.cc,debug_on_start.h,debug_util.cc,directory_watcher.h,dynamic_annotations.cc,dynamic_annotations.h,event_recorder.cc,event_recorder.h,file_util.h,file_util_linux.cc,file_util_posix.cc,file_util_win.cc,file_version_info.cc,file_version_info.h,file_version_info_unittest.cc,fix_wp64.h,float_util.h,hash_tables.h,histogram.cc,histogram.h,histogram_unittest.cc,hmac.h,hmac_unittest.cc,hmac_win.cc,iat_patch.cc,iat_patch.h,id_map.h,image_util.cc,image_util.h,linked_ptr.h,linked_ptr_unittest.cc,lock.cc,lock_impl.h,lock_impl_posix.cc,lock_impl_win.cc,logging.h,mach_ipc_mac.h,memory_debug.cc,memory_debug.h,message_loop.h,message_loop_unittest.cc,message_pump.h,message_pump_default.cc,message_pump_default.h,message_pump_libevent.h,message_pump_win.h,no_windows2000_unittest.h,non_thread_safe.cc,non_thread_safe.h,object_watcher.cc,object_watcher.h,object_watcher_unittest.cc,observer_list.h,observer_list_threadsafe.h,observer_list_unittest.cc,path_service.cc,path_service.h,path_service_unittest.cc,pe_image.cc,pe_image.h,pe_image_unittest.cc,perftimer.cc,perftimer.h,pickle.cc,pickle.h,pickle_unittest.cc,platform_file.h,platform_file_win.cc,platform_thread.h,platform_thread_posix.cc,platform_thread_win.cc,port.h,pr_time_unittest.cc,process.h,process_util_posix.cc,process_win.cc,raw_scoped_refptr_mismatch_checker.h,ref_counted.h,ref_counted_unittest.cc,registry.cc,registry.h,resource_util.cc,resource_util.h,scoped_bstr_win.cc,scoped_bstr_win.h,scoped_bstr_win_unittest.cc,scoped_cftyperef.h,scoped_comptr_win.h,scoped_comptr_win_unittest.cc,scoped_handle.h,scoped_handle_win.h,scoped_ptr.h,scoped_ptr_unittest.cc,scoped_vector.h,sha2.cc,sha2.h,sha2_unittest.cc,shared_memory.h,shared_memory_posix.cc,shared_memory_unittest.cc,shared_memory_win.cc,simple_thread.cc,simple_thread.h,simple_thread_unittest.cc,singleton_unittest.cc,spin_wait.h,stack_container.h,stack_container_unittest.cc,stats_counters.h,stats_table.cc,stats_table.h,stl_util-inl.h,string16.h,string_piece.cc,string_piece.h,string_piece_unittest.cc,string_tokenizer.h,string_tokenizer_unittest.cc,string_util_posix.h,string_util_win.h,sys_string_conversions.h,sys_string_conversions_linux.cc,sys_string_conversions_unittest.cc,sys_string_conversions_win.cc,thread_collision_warner.cc,thread_local.h,thread_local_posix.cc,thread_local_storage.h,thread_local_storage_posix.cc,thread_local_storage_unittest.cc,thread_local_storage_win.cc,thread_local_unittest.cc,thread_local_win.cc,thread_unittest.cc,time_posix.cc,time_unittest.cc,time_win_unittest.cc,timer.cc,timer.h,timer_unittest.cc,trace_event.cc,trace_event.h,tracked.cc,tracked.h,tracked_objects.cc,tracked_objects.h,tracked_objects_unittest.cc,tuple.h,tuple_unittest.cc,version_unittest.cc,waitable_event_posix.cc,waitable_event_unittest.cc,waitable_event_watcher.h,waitable_event_watcher_posix.cc,waitable_event_watcher_win.cc,waitable_event_win.cc,watchdog.cc,watchdog.h,watchdog_unittest.cc,win_util.cc,win_util.h,win_util_unittest.cc,windows_message_list.h,wmi_util.cc,wmi_util.h,wmi_util_unittest.cc,worker_pool.h,worker_pool_linux.cc,worker_pool_win.cc}
501+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
502+License: global BSD-style Chromium
503+
504+Files: chromium/src/base/{compat_execinfo.h,debug_util.h,debug_util_mac.cc,debug_util_unittest.cc,debug_util_win.cc,field_trial.cc,field_trial.h,field_trial_unittest.cc,file_descriptor_posix.h,file_util.cc,leak_annotations.h,lock.h,logging.cc,md5.h,safe_strerror_posix.cc,thread.cc,thread.h}
505+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
506+License: global BSD-style Chromium
507+
508+Files: chromium/src/base/{data_pack.cc,data_pack.h,data_pack_unittest.cc,directory_watcher_unittest.cc,file_path.cc,file_path.h,file_path_unittest.cc,file_version_info_linux.cc,foundation_utils_mac.h,hmac_mac.cc,hmac_nss.cc,lazy_instance.cc,lazy_instance.h,lazy_instance_unittest.cc,message_pump_glib.cc,message_pump_glib.h,message_pump_mac.h,process_linux.cc,process_posix.cc,rand_util.cc,rand_util.h,rand_util_posix.cc,rand_util_unittest.cc,rand_util_win.cc,scoped_nsautorelease_pool.h,singleton_objc.h,sys_info.h,sys_info_posix.cc,sys_info_unittest.cc,sys_info_win.cc,thread_collision_warner.h,thread_collision_warner_unittest.cc,time_mac.cc,worker_pool_unittest.cc}
509+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
510+License: global BSD-style Chromium
511+
512+Files: chromium/src/base/{mac_util.h}
513+Copyright: Copyright (c) 2008-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
514+License: global BSD-style Chromium
515+
516+Files: chromium/src/base/{nss_util.cc}
517+Copyright: Copyright (c) 2008-2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
518+License: global BSD-style Chromium
519+
520+Files: chromium/src/base/{atomicops_internals_arm_gcc.h,auto_reset.h,bits.h,bits_unittest.cc,cancellation_flag.cc,cancellation_flag.h,cancellation_flag_unittest.cc,chrome_application_mac.h,cocoa_protocols_mac.h,directory_watcher_inotify.cc,directory_watcher_mac.cc,directory_watcher_stub.cc,directory_watcher_win.cc,eintr_wrapper.h,event_recorder_stubs.cc,event_trace_consumer_win.h,event_trace_consumer_win_unittest.cc,event_trace_controller_win.cc,event_trace_controller_win.h,event_trace_controller_win_unittest.cc,event_trace_provider_win.cc,event_trace_provider_win.h,event_trace_provider_win_unittest.cc,file_descriptor_shuffle.cc,file_descriptor_shuffle.h,file_descriptor_shuffle_unittest.cc,file_util_unittest.cc,format_macros.h,global_descriptors_posix.cc,global_descriptors_posix.h,gmock_unittest.cc,id_map_unittest.cc,keyboard_codes.h,keyboard_codes_win.h,leak_tracker.h,leak_tracker_unittest.cc,linked_list.h,linked_list_unittest.cc,linux_util.cc,linux_util.h,logging_win.cc,logging_win.h,message_loop.cc,message_pump_glib_unittest.cc,message_pump_libevent.cc,message_pump_win.cc,mime_util.h,mime_util_linux.cc,multiprocess_test.h,native_library.h,native_library_linux.cc,native_library_win.cc,nsimage_cache_mac.h,nullable_string16.h,platform_file_posix.cc,process_util.h,process_util_linux.cc,process_util_unittest.cc,process_util_win.cc,profiler.cc,profiler.h,ref_counted.cc,ref_counted_memory.h,safe_strerror_posix.h,scoped_nsdisable_screen_updates.h,scoped_nsobject.h,scoped_temp_dir.cc,scoped_temp_dir.h,scoped_temp_dir_unittest.cc,scoped_variant_win.cc,scoped_variant_win.h,scoped_variant_win_unittest.cc,setproctitle_linux.c,setproctitle_linux.h,sha1.cc,sha1.h,sha1_unittest.cc,singleton.h,stats_table_unittest.cc,string16.cc,string16_unittest.cc,sync_socket.h,sync_socket_posix.cc,sync_socket_win.cc,sys_info_chromeos.cc,sys_info_freebsd.cc,sys_info_linux.cc,sys_info_mac.cc,sys_info_openbsd.cc,task.h,task_unittest.cc,time.cc,time.h,time_win.cc,tools_sanity_unittest.cc,unix_domain_socket_posix.cc,unix_domain_socket_posix.h,utf_offset_string_conversions.cc,utf_offset_string_conversions.h,utf_offset_string_conversions_unittest.cc,utf_string_conversion_utils.cc,utf_string_conversion_utils.h,utf_string_conversions.cc,utf_string_conversions.h,utf_string_conversions_unittest.cc,values.cc,values.h,values_unittest.cc,version.cc,waitable_event.h,waitable_event_watcher_unittest.cc,weak_ptr.h,weak_ptr_unittest.cc,worker_pool_linux.h,worker_pool_linux_unittest.cc,worker_pool_mac.h}
521+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
522+License: global BSD-style Chromium
523+
524+Files: chromium/src/base/{nss_util.h,string_split.cc,string_split.h,string_split_unittest.cc,string_util.cc,string_util.h,string_util_unittest.cc}
525+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
526+License: global BSD-style Chromium
527+
528+Files: chromium/src/base/allocator/{allocator_unittests.cc}
529+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
530+License: GENERATED FILE
531+
532+Files: chromium/src/base/allocator/{allocator_shim.cc,generic_allocators.cc,prep_libc.sh,unittest_utils.cc,win_allocator.cc}
533+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
534+License: global BSD-style Chromium
535+
536+Files: chromium/src/base/crypto/{cssm_init.cc,cssm_init.h,rsa_private_key.cc,rsa_private_key.h,rsa_private_key_mac.cc,rsa_private_key_nss.cc,rsa_private_key_unittest.cc,rsa_private_key_win.cc,signature_creator.h,signature_creator_mac.cc,signature_creator_nss.cc,signature_creator_unittest.cc,signature_creator_win.cc,signature_verifier.h,signature_verifier_mac.cc,signature_verifier_nss.cc,signature_verifier_unittest.cc,signature_verifier_win.cc}
537+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
538+License: global BSD-style Chromium
539+
540+Files: chromium/src/base/gfx/*
541+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
542+License: global BSD-style Chromium
543+
544+Files: chromium/src/base/gfx/*
545+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
546+License: global BSD-style Chromium
547+
548+Files: chromium/src/base/i18n/{icu_string_conversions.cc}
549+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved / holder / 1995-2006 International Business Machines Corporation / HOLDER OR HOLDERS:
550+License: MIT/X11 (BSD like)
551+
552+Files: chromium/src/base/i18n/*
553+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
554+License: global BSD-style Chromium
555+
556+Files: chromium/src/base/i18n/*
557+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
558+License: global BSD-style Chromium
559+
560+Files: chromium/src/base/json/*
561+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
562+License: global BSD-style Chromium
563+
564+Files: chromium/src/base/json/*
565+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
566+License: global BSD-style Chromium
567+
568+Files: chromium/src/base/test/{run_all_perftests.cc}
569+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
570+License: global BSD-style Chromium
571+
572+Files: chromium/src/base/test/{test_file_util.h,test_file_util_linux.cc,test_file_util_mac.cc,test_file_util_win.cc}
573+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
574+License: global BSD-style Chromium
575+
576+Files: chromium/src/base/test/{perf_test_suite.h,run_all_unittests.cc,test_file_util_posix.cc,test_suite.h}
577+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
578+License: global BSD-style Chromium
579+
580+Files: chromium/src/base/third_party/dmg_fp/{g_fmt.cc}
581+Copyright: Copyright: 1991, 1996 by Lucent Technologies:
582+License: MIT/X11 (BSD like)
583+
584+Files: chromium/src/base/third_party/dmg_fp/{dtoa.cc}
585+Copyright: Copyright: 1991, 2000, 2001 by Lucent Technologies:
586+License: MIT/X11 (BSD like)
587+
588+Files: chromium/src/base/third_party/dmg_fp/{dmg_fp.h}
589+Copyright: Copyright: 2008 The Chromium Authors. All rights reserved:
590+License: MIT/X11 (BSD like)
591+
592+Files: chromium/src/base/third_party/icu/*
593+Copyright: Copyright: 1999-2006, International Business Machines:
594+License: ICU-License
595+
596+Files: chromium/src/base/third_party/icu/*
597+Copyright: Copyright: \ / 1999-2004, International Business Machines:
598+License: ICU-License
599+
600+Files: chromium/src/base/third_party/nspr/{prcpucfg.h}
601+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
602+License: BSD (3 clause)
603+
604+Files: chromium/src/base/third_party/nspr/*
605+Copyright: Copyright: 1998-2000:
606+License: MPL (v1.1) GPL (unversioned/unknown version)
607+
608+Files: chromium/src/base/third_party/nspr/*
609+Copyright: Copyright: 2007 Google Inc */ / 1998-2000:
610+License: MPL (v1.1) GPL (unversioned/unknown version)
611+
612+Files: chromium/src/base/third_party/nss/*
613+Copyright: Copyright: 1994-2000:
614+License: MPL (v1.1) GPL (unversioned/unknown version)
615+
616+Files: chromium/src/base/third_party/nss/*
617+Copyright: Copyright: 2002:
618+License: MPL (v1.1) GPL (unversioned/unknown version)
619+
620+Files: chromium/src/base/third_party/purify/*
621+Copyright: Copyright: IBM Corporation. 2006, 2006. All Rights Reserved:
622+License: Public domain
623+
624+Files: chromium/src/base/third_party/purify/*
625+Copyright: UNKNOWN:
626+License: Public domain
627+
628+Files: chromium/src/base/third_party/valgrind/{valgrind.h}
629+Copyright: Copyright: 2000-2008 Julian Seward. All rights reserved:
630+License: BSD (3 clause)
631+
632+Files: chromium/src/base/third_party/xdg_mime/{xdgmimealias.h,xdgmimeparent.h}
633+Copyright: Copyright: 200 Matthias Clasen <mclasen@redhat.com> / 2004 Red Hat, Inc:
634+License: LGPL (v2 or later) (with incorrect FSF address)
635+
636+Files: chromium/src/base/third_party/xdg_mime/{xdgmime.h,xdgmimeglob.c,xdgmimeglob.h,xdgmimeint.c,xdgmimeint.h,xdgmimemagic.c,xdgmimemagic.h}
637+Copyright: Copyright: 2003 Jonathan Blandford <jrb@alum.mit.edu> / 2003 Red Hat, Inc:
638+License: LGPL (v2 or later) (with incorrect FSF address)
639+
640+Files: chromium/src/base/third_party/xdg_mime/{xdgmime.c}
641+Copyright: Copyright: 2003,2004 Jonathan Blandford <jrb@alum.mit.edu> / 2003,2004 Red Hat, Inc:
642+License: LGPL (v2 or later) (with incorrect FSF address)
643+
644+Files: chromium/src/base/third_party/xdg_mime/{xdgmimealias.c,xdgmimeparent.c}
645+Copyright: Copyright: 2004 Red Hat, Inc / 2004 Matthias Clasen <mclasen@redhat.com>:
646+License: LGPL (v2 or later) (with incorrect FSF address)
647+
648+Files: chromium/src/base/third_party/xdg_mime/{xdgmimecache.c,xdgmimecache.h}
649+Copyright: Copyright: 2005 Matthias Clasen <mclasen@redhat.com>:
650+License: LGPL (v2 or later) (with incorrect FSF address)
651+
652+Files: chromium/src/base/third_party/xdg_mime/{xdgmimeicon.c,xdgmimeicon.h}
653+Copyright: Copyright: 2008 Red Hat, Inc:
654+License: LGPL (v2 or later) (with incorrect FSF address)
655+
656+Files: chromium/src/base/third_party/xdg_user_dirs/{xdg_user_dir_lookup.cc,xdg_user_dir_lookup.h}
657+Copyright: Copyright: 2007 Red Hat, inc / HOLDERS:
658+License: MIT/X11 (BSD like)
659+
660+Files: chromium/src/breakpad/linux/{breakpad_googletest_includes.h,generate-test-dump.cc}
661+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
662+License: BSD (3 clause)
663+
664+Files: chromium/src/build/{build_config.h}
665+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
666+License: global BSD-style Chromium
667+
668+Files: chromium/src/build/{branding_value.sh}
669+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
670+License: global BSD-style Chromium
671+
672+Files: chromium/src/build/{build-bisect.py,compiler_version.py,install-build-deps.sh}
673+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
674+License: global BSD-style Chromium
675+
676+Files: chromium/src/build/linux/{dump_signature.py,rewrite_dirs.py}
677+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
678+License: global BSD-style Chromium
679+
680+Files: chromium/src/build/mac/{clobber_generated_headers.py}
681+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
682+License: global BSD-style Chromium
683+
684+Files: chromium/src/build/util/{lastchange.py}
685+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
686+License: global BSD-style Chromium
687+
688+Files: chromium/src/build/win/{clobber_generated_headers.py}
689+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
690+License: global BSD-style Chromium
691+
692+Files: chromium/src/chrome/{PRESUBMIT.py}
693+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
694+License: global BSD-style Chromium
695+
696+Files: chromium/src/chrome/app/{hard_error_handler_win.h}
697+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
698+License: GENERATED FILE
699+
700+Files: chromium/src/chrome/app/{breakpad_win.h,chrome_exe_main.cc,chrome_main_uitest.cc,client_util.cc,client_util.h}
701+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
702+License: global BSD-style Chromium
703+
704+Files: chromium/src/chrome/app/{chrome_exe_main_gtk.cc}
705+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
706+License: global BSD-style Chromium
707+
708+Files: chromium/src/chrome/app/{breakpad_linux.cc,breakpad_linux.h,breakpad_mac.h,breakpad_win.cc,chrome_dll_main.cc,chrome_dll_resource.h,chrome_exe_resource.h,dummy_main_functions.cc,hard_error_handler_win.cc,scoped_ole_initializer.h}
709+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
710+License: global BSD-style Chromium
711+
712+Files: chromium/src/chrome/browser/{app_modal_dialog_queue.cc,app_modal_dialog_queue.h,browser_about_handler.h,browser_accessibility.cc,browser_accessibility.h,browser_accessibility_manager.cc,browser_accessibility_manager.h,browser_commands_unittest.cc,browser_init.h,browser_prefs.h,browser_shutdown.h,browser_trial.cc,browser_trial.h,browser_uitest.cc,browser_url_handler.cc,browser_url_handler.h,browsing_data_remover.cc,browsing_instance.cc,browsing_instance.h,cancelable_request.cc,cancelable_request.h,cert_store.cc,cert_store.h,character_encoding.cc,character_encoding.h,child_process_security_policy.h,child_process_security_policy_unittest.cc,chrome_plugin_browsing_context.cc,chrome_plugin_browsing_context.h,chrome_plugin_host.h,command_updater.cc,command_updater_unittest.cc,cross_site_request_manager.cc,cross_site_request_manager.h,dock_info.cc,dock_info_win.cc,dom_operation_notification_details.h,errorpage_uitest.cc,external_protocol_handler.cc,external_tab_container.cc,external_tab_container.h,fav_icon_helper.h,find_notification_details.h,form_field_history_manager.cc,gears_integration.h,google_update.cc,google_update.h,google_url_tracker.cc,google_url_tracker.h,google_url_tracker_unittest.cc,google_util.cc,google_util.h,icon_manager.cc,icon_manager.h,iframe_uitest.cc,images_uitest.cc,ime_input.cc,ime_input.h,jsmessage_box_handler.h,load_from_memory_cache_details.h,load_notification_details.h,locale_tests_uitest.cc,login_prompt_uitest.cc,login_prompt_unittest.cc,memory_details.h,memory_details_linux.cc,memory_details_win.cc,meta_table_helper.cc,meta_table_helper.h,modal_html_dialog_delegate.cc,modal_html_dialog_delegate.h,options_window.h,page_state.cc,page_state.h,plugin_installer.cc,plugin_installer.h,plugin_service.cc,plugin_service.h,profile_manager_unittest.cc,sanity_uitest.cc,session_history_uitest.cc,session_startup_pref.cc,session_startup_pref.h,shell_dialogs.h,shell_integration.h,task_manager.h,task_manager_resource_providers.h,toolbar_model.h,user_data_manager.cc,user_data_manager.h,view_ids.h,visitedlink_master.cc,visitedlink_master.h,visitedlink_perftest.cc,visitedlink_unittest.cc,window_sizer_unittest.cc}
713+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
714+License: global BSD-style Chromium
715+
716+Files: chromium/src/chrome/browser/{back_forward_menu_model.cc,blocked_popup_container_interactive_uitest.cc,browser_encoding_uitest.cc,browser_window.h,first_run.cc,first_run_win.cc,jumplist.cc,jumplist.h,options_page_base.cc,options_page_base.h,shell_integration_linux.cc,tab_restore_uitest.cc,unload_uitest.cc}
717+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
718+License: global BSD-style Chromium
719+
720+Files: chromium/src/chrome/browser/{browser_main_gtk.cc,browser_main_win.h}
721+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
722+License: global BSD-style Chromium
723+
724+Files: chromium/src/chrome/browser/{blocked_popup_container.cc,blocked_popup_container.h}
725+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
726+License: global BSD-style Chromium
727+
728+Files: chromium/src/chrome/browser/{app_controller_cppsafe_mac.h,app_controller_mac.h,app_menu_model.cc,app_menu_model.h,app_menu_model_unittest.cc,app_modal_dialog.cc,app_modal_dialog.h,app_modal_dialog_gtk.cc,app_modal_dialog_win.cc,back_forward_menu_model.h,back_forward_menu_model_unittest.cc,blocked_popup_container_unittest.cc,browser.h,browser_about_handler.cc,browser_browsertest.cc,browser_focus_uitest.cc,browser_init.cc,browser_init_browsertest.cc,browser_keyevents_browsertest.cc,browser_list.cc,browser_list.h,browser_list_gtk.cc,browser_main.h,browser_main_win.cc,browser_process.cc,browser_shutdown.cc,browser_theme_pack.cc,browser_theme_pack.h,browser_theme_pack_unittest.cc,browser_theme_provider.cc,browser_theme_provider.h,browser_theme_provider_gtk.cc,browser_theme_provider_unittest.cc,browser_unittest.cc,browsing_data_remover.h,bubble_positioner.h,bug_report_util.cc,bug_report_util.h,child_process_launcher.cc,child_process_launcher.h,child_process_security_policy.cc,child_process_security_policy_browser_test.cc,chrome_browser_application_mac.h,chrome_plugin_host.cc,chrome_thread.cc,chrome_thread.h,chrome_thread_unittest.cc,command_updater.h,cookies_tree_model.cc,cookies_tree_model.h,crash_handler_host_linux.cc,crash_handler_host_linux.h,crash_handler_host_linux_stub.cc,crash_recovery_browsertest.cc,defaults.cc,defaults.h,dock_info.h,dock_info_gtk.cc,encoding_menu_controller.cc,encoding_menu_controller.h,encoding_menu_controller_unittest.cc,external_protocol_handler.h,fav_icon_helper.cc,favicon_service.cc,favicon_service.h,find_backend_unittest.cc,find_bar.h,find_bar_controller.cc,find_bar_controller.h,first_run_gtk.cc,fonts_languages_window.h,form_field_history_manager.h,gears_integration.cc,global_keyboard_shortcuts_mac.h,google_service_auth_error.h,google_update_settings_posix.cc,google_update_settings_unittest.cc,host_zoom_map.cc,host_zoom_map.h,hung_renderer_dialog.h,icon_loader.cc,icon_loader.h,icon_loader_linux.cc,icon_loader_win.cc,icon_manager_linux.cc,icon_manager_win.cc,input_window_dialog.h,input_window_dialog_gtk.cc,input_window_dialog_win.cc,jankometer.cc,jankometer.h,jsmessage_box_client.h,jsmessage_box_handler.cc,keychain_mac.cc,keychain_mac.h,keychain_mock_mac.cc,keychain_mock_mac.h,language_combobox_model.cc,language_combobox_model.h,language_order_table_model.cc,language_order_table_model.h,location_bar.h,login_model.h,login_prompt.cc,login_prompt.h,login_prompt_gtk.cc,login_prompt_mac.h,login_prompt_win.cc,mach_broker_mac.cc,mach_broker_mac.h,mach_broker_mac_unittest.cc,media_uitest.cc,memory_details.cc,memory_details_mac.cc,memory_purger.cc,memory_purger.h,meta_table_helper_unittest.cc,nacl_process_host.cc,nacl_process_host.h,ntp_background_util.cc,ntp_background_util.h,omnibox_search_hint.cc,omnibox_search_hint.h,options_util.cc,options_util.h,page_info_model.cc,page_info_model.h,page_info_window.h,page_menu_model.cc,page_menu_model.h,page_menu_model_unittest.cc,plugin_carbon_interpose_mac.cc,plugin_process_host.h,plugin_process_host_mac.cc,possible_url_model.cc,possible_url_model.h,power_save_blocker.h,power_save_blocker_common.cc,power_save_blocker_stub.cc,power_save_blocker_win.cc,process_info_snapshot.h,process_info_snapshot_mac.cc,process_info_snapshot_mac_unittest.cc,process_singleton.h,process_singleton_linux.cc,process_singleton_linux_uitest.cc,process_singleton_mac.cc,process_singleton_win.cc,profile.cc,profile.h,profile_manager.cc,profile_manager.h,renderer_preferences_util.cc,renderer_preferences_util.h,search_versus_navigate_classifier.cc,search_versus_navigate_classifier.h,shell_integration.cc,shell_integration_unittest.cc,spellcheck_host.cc,spellcheck_host.h,spellcheck_host_observer.h,spellchecker_linux.cc,spellchecker_platform_engine.h,spellchecker_platform_engine_unittest.cc,spellchecker_win.cc,status_bubble.h,tab_menu_model.cc,tab_menu_model.h,tab_menu_model_unittest.cc,task_manager.cc,task_manager_browsertest.cc,task_manager_resource_providers.cc,task_manager_unittest.cc,theme_resources_util.cc,theme_resources_util.h,theme_resources_util_unittest.cc,thumbnail_store.cc,thumbnail_store.h,thumbnail_store_unittest.cc,transport_security_persister.cc,transport_security_persister.h,utility_process_host.cc,utility_process_host.h,visitedlink_event_listener.cc,visitedlink_event_listener.h,window_sizer.cc,window_sizer.h,window_sizer_linux.cc,window_sizer_win.cc,zygote_host_linux.cc,zygote_host_linux.h,zygote_main_linux.cc}
729+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
730+License: global BSD-style Chromium
731+
732+Files: chromium/src/chrome/browser/{cookies_tree_model_unittest.cc}
733+Copyright: Copyright (c) 2009-2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
734+License: global BSD-style Chromium
735+
736+Files: chromium/src/chrome/browser/{alternate_nav_url_fetcher.cc,alternate_nav_url_fetcher.h,browser.cc,browser_main.cc,browser_prefs.cc,browser_process.h,browser_process_impl.cc,browser_process_impl.h,browser_process_sub_thread.cc,browser_process_sub_thread.h,first_run.h,gpu_process_host.cc,gpu_process_host.h,intranet_redirect_detector.cc,intranet_redirect_detector.h,io_thread.cc,io_thread.h,plugin_process_host.cc,shell_integration_win.cc,toolbar_model.cc}
737+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
738+License: global BSD-style Chromium
739+
740+Files: chromium/src/chrome/browser/autocomplete/*
741+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
742+License: global BSD-style Chromium
743+
744+Files: chromium/src/chrome/browser/autocomplete/*
745+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
746+License: global BSD-style Chromium
747+
748+Files: chromium/src/chrome/browser/autofill/{autofill_field.h}
749+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
750+License: GENERATED FILE
751+
752+Files: chromium/src/chrome/browser/autofill/*
753+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
754+License: global BSD-style Chromium
755+
756+Files: chromium/src/chrome/browser/autofill/*
757+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
758+License: global BSD-style Chromium
759+
760+Files: chromium/src/chrome/browser/automation/{automation_autocomplete_edit_tracker.h,automation_browser_tracker.h,automation_provider.h,automation_provider_list.cc,automation_provider_list.h,automation_resource_tracker.cc,automation_resource_tracker.h,automation_tab_tracker.h,automation_window_tracker.h,ui_controls_win.cc}
761+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
762+License: global BSD-style Chromium
763+
764+Files: chromium/src/chrome/browser/automation/{automation_profile_impl.cc,automation_resource_message_filter.cc,automation_resource_message_filter.h,chrome_frame_automation_provider.h,url_request_automation_job.h}
765+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
766+License: global BSD-style Chromium
767+
768+Files: chromium/src/chrome/browser/automation/{automation_extension_function.cc,automation_extension_function.h,automation_profile_impl.h,automation_provider.cc,automation_provider_gtk.cc,automation_provider_list_generic.cc,automation_provider_observers.cc,automation_provider_observers.h,automation_provider_unittest.cc,automation_provider_views.cc,automation_provider_win.cc,chrome_frame_automation_provider.cc,extension_automation_constants.cc,extension_automation_constants.h,extension_port_container.cc,extension_port_container.h,ui_controls.h,ui_controls_linux.cc,url_request_automation_job.cc}
769+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
770+License: global BSD-style Chromium
771+
772+Files: chromium/src/chrome/browser/bookmarks/{bookmark_service.h}
773+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, The Chromium Authors:
774+License: BSD (3 clause)
775+
776+Files: chromium/src/chrome/browser/bookmarks/{bookmark_html_writer.cc}
777+Copyright: Copyright: 2006-2008 The Chromium Authors. All rights reserved:
778+License: GENERATED FILE
779+
780+Files: chromium/src/chrome/browser/bookmarks/{bookmark_context_menu_controller.h,bookmark_drag_data.h,bookmark_drag_data_unittest.cc,bookmark_drop_info.cc,bookmark_drop_info.h,bookmark_folder_tree_model.cc,bookmark_folder_tree_model.h,bookmark_folder_tree_model_unittest.cc,bookmark_html_writer.h,bookmark_html_writer_unittest.cc,bookmark_model.h,bookmark_model_unittest.cc,bookmark_storage.cc,bookmark_storage.h,bookmark_table_model.h,bookmark_table_model_unittest.cc,bookmark_utils.h,bookmark_utils_unittest.cc}
781+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
782+License: global BSD-style Chromium
783+
784+Files: chromium/src/chrome/browser/bookmarks/{bookmark_model_test_utils.cc,bookmark_model_test_utils.h}
785+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
786+License: global BSD-style Chromium
787+
788+Files: chromium/src/chrome/browser/bookmarks/{base_bookmark_model_observer.h,bookmark_codec.cc,bookmark_codec.h,bookmark_codec_unittest.cc,bookmark_context_menu_controller.cc,bookmark_drag_data.cc,bookmark_editor.h,bookmark_index.cc,bookmark_index.h,bookmark_index_unittest.cc,bookmark_manager.h,bookmark_model.cc,bookmark_model_observer.h,bookmark_table_model.cc,bookmark_utils.cc}
789+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
790+License: global BSD-style Chromium
791+
792+Files: chromium/src/chrome/browser/chromeos/{ipc_message.h}
793+Copyright: Copyright: 2010 The Chromium OS Authors. All rights reserved:
794+License: UNKNOWN
795+
796+Files: chromium/src/chrome/browser/chromeos/{language_menu_button.h,network_menu_button.h,password_dialog_view.h,power_menu_button.h,settings_contents_view.h,status_area_button.h}
797+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
798+License: global BSD-style Chromium
799+
800+Files: chromium/src/chrome/browser/chromeos/{external_metrics.cc,external_metrics.h}
801+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
802+License: global BSD-style Chromium
803+
804+Files: chromium/src/chrome/browser/chromeos/{browser_extenders.cc,clock_menu_button.cc,clock_menu_button.h,compact_location_bar_view.cc,compact_location_bar_view.h,compact_navigation_bar.cc,compact_navigation_bar.h,cros_library.cc,cros_library.h,external_cookie_handler.cc,external_cookie_handler.h,external_cookie_handler_unittest.cc,external_metrics_unittest.cc,external_protocol_dialog.cc,external_protocol_dialog.h,gview_request_interceptor.cc,gview_request_interceptor.h,gview_request_interceptor_unittest.cc,image_background.h,language_library.cc,language_library.h,language_menu_button.cc,login_manager_view.cc,login_manager_view.h,main_menu.cc,main_menu.h,mount_library.cc,mount_library.h,network_library.cc,network_library.h,network_menu_button.cc,panel_controller.cc,panel_controller.h,password_dialog_view.cc,pipe_reader.cc,pipe_reader.h,pipe_reader_unittest.cc,power_library.cc,power_library.h,power_menu_button.cc,preferences.cc,preferences.h,settings_contents_view.cc,settings_page_view.cc,settings_page_view.h,status_area_button.cc,status_area_view.cc,status_area_view.h,synaptics_library.cc,synaptics_library.h,usb_mount_observer.cc,usb_mount_observer.h,version_loader.cc,version_loader.h,version_loader_unittest.cc}
805+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
806+License: global BSD-style Chromium
807+
808+Files: chromium/src/chrome/browser/chromeos/{browser_notification_observers.cc,browser_notification_observers.h,chromeos_browser_view.cc,chromeos_browser_view.h,compact_location_bar_host.cc,compact_location_bar_host.h,login_library.cc,login_library.h,panel_browser_view.cc,panel_browser_view.h}
809+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
810+License: global BSD-style Chromium
811+
812+Files: chromium/src/chrome/browser/chromeos/panels/{panel_scroller.cc,panel_scroller.h,panel_scroller_container.cc,panel_scroller_container.h,panel_scroller_header.cc,panel_scroller_header.h}
813+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
814+License: global BSD-style Chromium
815+
816+Files: chromium/src/chrome/browser/cocoa/{blocked_popup_container_controller.h}
817+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
818+License: global BSD-style Chromium
819+
820+Files: chromium/src/chrome/browser/cocoa/{about_ipc_bridge.h,about_ipc_controller.h,about_ipc_dialog.h,about_window_controller.h,animatable_view.h,authorization_util.cc,authorization_util.h,autocomplete_text_field.h,autocomplete_text_field_cell.h,autocomplete_text_field_editor.h,autocomplete_text_field_unittest_helper.h,back_forward_menu_controller.h,background_gradient_view.h,background_tile_view.h,base_view.h,bookmark_all_tabs_controller.h,bookmark_bar_bridge.h,bookmark_bar_constants.h,bookmark_bar_controller.h,bookmark_bar_state.h,bookmark_bar_toolbar_view.h,bookmark_bar_view.h,bookmark_bubble_controller.h,bookmark_button.h,bookmark_button_cell.h,bookmark_editor_base_controller.h,bookmark_editor_controller.h,bookmark_manager_controller.h,bookmark_menu.h,bookmark_menu_bridge.h,bookmark_menu_cocoa_controller.h,bookmark_name_folder_controller.h,bookmark_tree_browser_cell.h,bookmark_tree_controller.h,browser_command_executor.h,browser_frame_view.h,browser_test_helper.h,browser_window_cocoa.h,browser_window_controller.h,bubble_view.h,bug_report_window_controller.h,chrome_browser_window.h,chrome_event_processing_window.h,clickhold_button_cell.h,cocoa_test_helper.h,command_observer_bridge.h,constrained_window_mac.h,cookie_tree_node.h,cookies_window_controller.h,custom_home_pages_model.h,delayedmenu_button.h,download_item_cell.h,download_item_controller.h,download_item_mac.h,download_shelf_controller.h,download_shelf_mac.h,download_shelf_view.h,download_util_mac.h,edit_search_engine_cocoa_controller.h,encoding_menu_controller_delegate_mac.h,event_utils.h,extension_view_mac.h,external_protocol_dialog.h,fast_resize_view.h,file_metadata.h,find_bar_bridge.h,find_bar_cocoa_controller.h,find_bar_text_field.h,find_bar_text_field_cell.h,find_bar_view.h,find_pasteboard.h,first_run_dialog.h,focus_tracker.h,font_language_settings_controller.h,fullscreen_window.h,gradient_button_cell.h,history_menu_bridge.h,history_menu_cocoa_controller.h,hover_close_button.h,html_dialog_window_controller.h,html_dialog_window_controller_cppsafe.h,hung_renderer_controller.h,hyperlink_button_cell.h,import_progress_dialog.h,import_settings_dialog.h,importer_lock_dialog.h,info_bubble_view.h,info_bubble_window.h,infobar.h,infobar_container_controller.h,infobar_controller.h,infobar_gradient_view.h,infobar_test_helper.h,infobar_text_field.h,keystone_glue.h,keystone_infobar.h,keystone_promote_postflight.sh,keystone_promote_preflight.sh,keyword_editor_cocoa_controller.h,location_bar_view_mac.h,menu_button.h,menu_controller.h,multi_key_equivalent_button.h,nsmenuitem_additions.h,objc_method_swizzle.h,page_info_window_controller.h,page_info_window_mac.h,preferences_window_controller.h,repost_form_warning_mac.h,restart_browser.h,rwhvm_editcommand_helper.h,sad_tab_controller.h,sad_tab_view.h,scoped_authorizationref.h,search_engine_list_model.h,status_bubble_mac.h,styled_text_field.h,styled_text_field_cell.h,styled_text_field_test_helper.h,tab_contents_controller.h,tab_controller.h,tab_controller_target.h,tab_strip_controller.h,tab_strip_model_observer_bridge.h,tab_strip_view.h,tab_view.h,tab_window_controller.h,task_manager_mac.h,test_event_utils.h,theme_install_bubble_view.h,throbber_view.h,toolbar_button_cell.h,toolbar_controller.h,toolbar_view.h,ui_localizer.h,url_drop_target.h,view_resizer.h,view_resizer_pong.h,web_drag_source.h,web_drop_target.h}
821+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
822+License: global BSD-style Chromium
823+
824+Files: chromium/src/chrome/browser/cocoa/{clear_browsing_data_controller.h}
825+Copyright: Copyright (c) 2009-2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
826+License: global BSD-style Chromium
827+
828+Files: chromium/src/chrome/browser/cocoa/{bookmark_item.h,table_row_nsimage_cache.h,window_size_autosaver.h}
829+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
830+License: global BSD-style Chromium
831+
832+Files: chromium/src/chrome/browser/cocoa/extensions/*
833+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
834+License: global BSD-style Chromium
835+
836+Files: chromium/src/chrome/browser/cocoa/extensions/*
837+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
838+License: global BSD-style Chromium
839+
840+Files: chromium/src/chrome/browser/debugger/*
841+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
842+License: global BSD-style Chromium
843+
844+Files: chromium/src/chrome/browser/debugger/*
845+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
846+License: global BSD-style Chromium
847+
848+Files: chromium/src/chrome/browser/diagnostics/{diagnostics_main.cc,diagnostics_main.h,diagnostics_model.cc,diagnostics_model.h,diagnostics_model_unittest.cc,diagnostics_test.h,recon_diagnostics.cc,recon_diagnostics.h,sqlite_diagnostics.cc,sqlite_diagnostics.h}
849+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
850+License: global BSD-style Chromium
851+
852+Files: chromium/src/chrome/browser/dom_ui/{chrome_url_data_manager.cc,chrome_url_data_manager.h,downloads_ui.h,fileicon_source.h,history_ui.h,html_dialog_ui.cc,html_dialog_ui.h,new_tab_page_sync_handler.cc,new_tab_page_sync_handler.h,new_tab_ui.h}
853+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
854+License: global BSD-style Chromium
855+
856+Files: chromium/src/chrome/browser/dom_ui/{downloads_dom_handler.h,downloads_ui.cc,most_visited_handler.h,new_tab_ui.cc,shown_sections_handler.h}
857+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
858+License: global BSD-style Chromium
859+
860+Files: chromium/src/chrome/browser/dom_ui/{devtools_ui.cc,devtools_ui.h,dom_ui.cc,dom_ui.h,dom_ui_factory.cc,dom_ui_factory.h,dom_ui_favicon_source.cc,dom_ui_favicon_source.h,dom_ui_theme_source.cc,dom_ui_theme_source.h,dom_ui_theme_source_unittest.cc,dom_ui_thumbnail_source.cc,dom_ui_thumbnail_source.h,dom_ui_unittest.cc,downloads_dom_handler.cc,filebrowse_ui.cc,filebrowse_ui.h,fileicon_source.cc,history_ui.cc,html_dialog_tab_contents_delegate.cc,html_dialog_tab_contents_delegate.h,html_dialog_tab_contents_delegate_unittest.cc,most_visited_handler.cc,new_tab_ui_uitest.cc,ntp_resource_cache.cc,ntp_resource_cache.h,print_ui.cc,print_ui.h,shown_sections_handler.cc,shown_sections_handler_unittest.cc,tips_handler.cc,tips_handler.h}
861+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
862+License: global BSD-style Chromium
863+
864+Files: chromium/src/chrome/browser/download/{download_exe.cc}
865+Copyright: Copyright: 1998-1999 / 2006-2008 The Chromium Authors. All rights reserved:
866+License: MPL (v1.1) GPL (unversioned/unknown version)
867+
868+Files: chromium/src/chrome/browser/download/{download_file.cc,download_file.h,download_item_model.h,download_request_manager.cc,download_request_manager_unittest.cc,download_uitest.cc,save_file.cc,save_file.h,save_file_manager.cc,save_file_manager.h,save_item.cc,save_item.h,save_package.h,save_package_unittest.cc,save_page_uitest.cc,save_types.h}
869+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
870+License: global BSD-style Chromium
871+
872+Files: chromium/src/chrome/browser/download/{download_manager.cc,download_manager.h}
873+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
874+License: global BSD-style Chromium
875+
876+Files: chromium/src/chrome/browser/download/{download_item_model.cc,download_manager_unittest.cc,download_request_infobar_delegate.cc,download_request_infobar_delegate.h,download_request_infobar_delegate_unittest.cc,download_request_manager.h,download_shelf.cc,download_shelf.h,download_started_animation.h,download_util.cc,download_util.h,drag_download_file_win.cc,drag_download_file_win.h,save_package.cc,save_page_browsertest.cc}
877+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
878+License: global BSD-style Chromium
879+
880+Files: chromium/src/chrome/browser/extensions/{extension_protocols.cc,extension_protocols.h}
881+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
882+License: global BSD-style Chromium
883+
884+Files: chromium/src/chrome/browser/extensions/{extension_host.cc,extension_host.h,extension_ui_unittest.cc,extensions_ui.cc,extensions_ui.h}
885+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
886+License: global BSD-style Chromium
887+
888+Files: chromium/src/chrome/browser/extensions/{extension_startup_unittest.cc,user_script_master.cc,user_script_master.h,user_script_master_unittest.cc}
889+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
890+License: global BSD-style Chromium
891+
892+Files: chromium/src/chrome/browser/extensions/{autoupdate_interceptor.cc,autoupdate_interceptor.h,browser_action_apitest.cc,browser_action_test_util.h,browser_action_test_util_gtk.cc,browser_action_test_util_views.cc,content_script_all_frames_apitest.cc,content_script_extension_process_apitest.cc,convert_user_script.cc,convert_user_script.h,convert_user_script_unittest.cc,crashed_extension_infobar.cc,crashed_extension_infobar.h,crx_installer.cc,crx_installer.h,execute_code_in_tab_function.cc,execute_code_in_tab_function.h,extension_action_context_menu_model.cc,extension_action_context_menu_model.h,extension_apitest.cc,extension_apitest.h,extension_bookmarks_apitest.cc,extension_bookmarks_module.cc,extension_bookmarks_module.h,extension_bookmarks_module_constants.cc,extension_bookmarks_module_constants.h,extension_browser_actions_api.cc,extension_browser_actions_api.h,extension_browser_event_router.cc,extension_browser_event_router.h,extension_browsertest.cc,extension_browsertest.h,extension_browsertests_misc.cc,extension_creator.cc,extension_creator.h,extension_devtools_bridge.cc,extension_devtools_bridge.h,extension_devtools_browsertest.cc,extension_devtools_browsertest.h,extension_devtools_browsertests.cc,extension_devtools_events.cc,extension_devtools_events.h,extension_devtools_manager.cc,extension_devtools_manager.h,extension_disabled_infobar_delegate.cc,extension_disabled_infobar_delegate.h,extension_dom_ui.cc,extension_dom_ui.h,extension_event_names.cc,extension_event_names.h,extension_file_util.cc,extension_file_util.h,extension_file_util_unittest.cc,extension_function.cc,extension_function.h,extension_function_dispatcher.cc,extension_function_dispatcher.h,extension_history_api.cc,extension_history_api.h,extension_history_api_constants.cc,extension_history_api_constants.h,extension_host_mac.h,extension_i18n_api.cc,extension_i18n_api.h,extension_i18n_apitest.cc,extension_install_ui.cc,extension_install_ui.h,extension_management_tests.cc,extension_message_service.cc,extension_message_service.h,extension_messages_apitest.cc,extension_messages_unittest.cc,extension_override_apitest.cc,extension_page_actions_module.cc,extension_page_actions_module.h,extension_page_actions_module_constants.cc,extension_page_actions_module_constants.h,extension_popup_api.cc,extension_popup_api.h,extension_popup_apitest.cc,extension_popup_host.cc,extension_popup_host.h,extension_prefs.cc,extension_prefs.h,extension_process_manager.cc,extension_process_manager.h,extension_process_manager_unittest.cc,extension_shelf_model.cc,extension_shelf_model.h,extension_shelf_model_unittest.cc,extension_storage_apitest.cc,extension_tabs_apitest.cc,extension_tabs_module.cc,extension_tabs_module.h,extension_tabs_module_constants.cc,extension_tabs_module_constants.h,extension_test_api.cc,extension_test_api.h,extension_toolbar_model.cc,extension_toolbar_model.h,extension_toolstrip_api.cc,extension_toolstrip_api.h,extension_toolstrip_apitest.cc,extension_uitest.cc,extension_updater.cc,extension_updater.h,extension_updater_unittest.cc,extensions_quota_service.cc,extensions_quota_service.h,extensions_quota_service_unittest.cc,extensions_service.cc,extensions_service.h,extensions_service_unittest.cc,external_extension_provider.h,external_pref_extension_provider.cc,external_pref_extension_provider.h,external_registry_extension_provider_win.cc,external_registry_extension_provider_win.h,file_reader.cc,file_reader.h,file_reader_unittest.cc,gtk_theme_installed_infobar_delegate.cc,gtk_theme_installed_infobar_delegate.h,image_loading_tracker.cc,image_loading_tracker.h,isolated_world_apitest.cc,pack_extension_job.cc,pack_extension_job.h,page_action_apitest.cc,permissions_apitest.cc,sandboxed_extension_unpacker.cc,sandboxed_extension_unpacker.h,sandboxed_extension_unpacker_unittest.cc,stubs_apitest.cc,theme_installed_infobar_delegate.cc,theme_installed_infobar_delegate.h,user_script_listener.cc,user_script_listener.h,user_script_listener_unittest.cc}
893+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
894+License: global BSD-style Chromium
895+
896+Files: chromium/src/chrome/browser/extensions/{cross_origin_xhr_apitest.cc,extension_bookmark_manager_api.cc,extension_bookmark_manager_api.h,extension_bookmark_manager_apitest.cc,extension_history_apitest.cc,extension_javascript_url_apitest.cc,incognito_noscript_apitest.cc}
897+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
898+License: global BSD-style Chromium
899+
900+Files: chromium/src/chrome/browser/extensions/{execute_script_apitest.cc}
901+Copyright: Copyright (c) 20109 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
902+License: global BSD-style Chromium
903+
904+Files: chromium/src/chrome/browser/gtk/{bookmark_context_menu_gtk.h,bookmark_editor_gtk_unittest.cc,standard_menus.h}
905+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
906+License: global BSD-style Chromium
907+
908+Files: chromium/src/chrome/browser/gtk/{blocked_popup_container_view_gtk.cc,blocked_popup_container_view_gtk.h,find_bar_gtk.h}
909+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
910+License: global BSD-style Chromium
911+
912+Files: chromium/src/chrome/browser/gtk/{about_chrome_dialog.cc,about_chrome_dialog.h,back_forward_button_gtk.cc,back_forward_button_gtk.h,bookmark_bar_gtk.cc,bookmark_bar_gtk.h,bookmark_bar_gtk_unittest.cc,bookmark_bubble_gtk.cc,bookmark_bubble_gtk.h,bookmark_context_menu_gtk.cc,bookmark_editor_gtk.cc,bookmark_editor_gtk.h,bookmark_manager_browsertest.cc,bookmark_manager_gtk.cc,bookmark_menu_controller_gtk.cc,bookmark_menu_controller_gtk.h,bookmark_tree_model.cc,bookmark_tree_model.h,bookmark_utils_gtk.cc,bookmark_utils_gtk.h,browser_actions_toolbar_gtk.cc,browser_actions_toolbar_gtk.h,browser_titlebar.cc,browser_titlebar.h,browser_toolbar_gtk.cc,browser_toolbar_gtk.h,browser_window_factory_gtk.cc,browser_window_gtk.cc,browser_window_gtk.h,cairo_cached_surface.cc,cairo_cached_surface.h,clear_browsing_data_dialog_gtk.cc,clear_browsing_data_dialog_gtk.h,constrained_window_gtk.cc,constrained_window_gtk.h,create_application_shortcuts_dialog_gtk.cc,create_application_shortcuts_dialog_gtk.h,custom_button.cc,custom_button.h,dialogs_gtk.cc,download_in_progress_dialog_gtk.cc,download_in_progress_dialog_gtk.h,download_item_gtk.cc,download_item_gtk.h,download_shelf_gtk.cc,download_shelf_gtk.h,download_started_animation_gtk.cc,edit_search_engine_dialog.cc,edit_search_engine_dialog.h,extension_install_prompt_gtk.cc,extension_installed_bubble_gtk.cc,extension_installed_bubble_gtk.h,extension_popup_gtk.cc,extension_popup_gtk.h,extension_view_gtk.cc,extension_view_gtk.h,external_protocol_dialog_gtk.cc,external_protocol_dialog_gtk.h,find_bar_gtk.cc,first_run_bubble.cc,first_run_bubble.h,first_run_dialog.cc,first_run_dialog.h,focus_store_gtk.cc,focus_store_gtk.h,fullscreen_exit_bubble_gtk.cc,fullscreen_exit_bubble_gtk.h,go_button_gtk.cc,go_button_gtk.h,go_button_gtk_unittest.cc,gtk_chrome_button.cc,gtk_chrome_button.h,gtk_chrome_link_button.cc,gtk_chrome_link_button.h,gtk_expanded_container.cc,gtk_expanded_container.h,gtk_expanded_container_unittest.cc,gtk_floating_container.cc,gtk_floating_container.h,gtk_theme_provider.cc,gtk_theme_provider.h,gtk_theme_provider_unittest.cc,html_dialog_gtk.cc,html_dialog_gtk.h,hung_renderer_dialog_gtk.cc,import_dialog_gtk.cc,import_dialog_gtk.h,import_lock_dialog_gtk.cc,import_lock_dialog_gtk.h,import_progress_dialog_gtk.cc,import_progress_dialog_gtk.h,info_bubble_gtk.cc,info_bubble_gtk.h,infobar_container_gtk.cc,infobar_container_gtk.h,infobar_gtk.cc,infobar_gtk.h,keyword_editor_view.cc,keyword_editor_view.h,keyword_editor_view_unittest.cc,list_store_favicon_loader.cc,list_store_favicon_loader.h,location_bar_view_gtk.cc,location_bar_view_gtk.h,menu_bar_helper.cc,menu_bar_helper.h,menu_gtk.cc,menu_gtk.h,nine_box.cc,nine_box.h,page_info_window_gtk.cc,process_singleton_dialog.cc,process_singleton_dialog.h,repost_form_warning_gtk.cc,repost_form_warning_gtk.h,rounded_window.cc,rounded_window.h,sad_tab_gtk.cc,sad_tab_gtk.h,slide_animator_gtk.cc,slide_animator_gtk.h,status_bubble_gtk.cc,status_bubble_gtk.h,tab_contents_container_gtk.cc,tab_contents_container_gtk.h,tab_contents_drag_source.cc,tab_contents_drag_source.h,tabstrip_origin_provider.h,task_manager_gtk.cc,task_manager_gtk.h,theme_install_bubble_view_gtk.cc,theme_install_bubble_view_gtk.h,toolbar_star_toggle_gtk.cc,toolbar_star_toggle_gtk.h,view_id_util.cc,view_id_util.h,view_id_util_browsertest.cc}
913+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
914+License: global BSD-style Chromium
915+
916+Files: chromium/src/chrome/browser/gtk/{bookmark_manager_gtk.h}
917+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved.TIT Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
918+License: global BSD-style Chromium
919+
920+Files: chromium/src/chrome/browser/gtk/{accelerators_gtk.cc,accelerators_gtk.h,certificate_viewer.cc,certificate_viewer.h}
921+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
922+License: global BSD-style Chromium
923+
924+Files: chromium/src/chrome/browser/gtk/notifications/{balloon_view_gtk.cc,balloon_view_gtk.h,balloon_view_host_gtk.cc,balloon_view_host_gtk.h,notification_options_menu_model.cc,notification_options_menu_model.h}
925+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
926+License: global BSD-style Chromium
927+
928+Files: chromium/src/chrome/browser/gtk/options/{cookies_view_unittest.cc,languages_page_gtk_unittest.cc}
929+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
930+License: global BSD-style Chromium
931+
932+Files: chromium/src/chrome/browser/gtk/options/{general_page_gtk.cc,general_page_gtk.h,options_layout_gtk.cc,options_layout_gtk.h,options_window_gtk.cc}
933+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
934+License: global BSD-style Chromium
935+
936+Files: chromium/src/chrome/browser/gtk/options/{advanced_contents_gtk.cc,advanced_contents_gtk.h,advanced_page_gtk.cc,advanced_page_gtk.h,content_page_gtk.cc,content_page_gtk.h,cookies_view.cc,cookies_view.h,exceptions_page_gtk.cc,exceptions_page_gtk.h,fonts_languages_window_gtk.cc,fonts_page_gtk.cc,fonts_page_gtk.h,languages_page_gtk.cc,languages_page_gtk.h,passwords_exceptions_window_gtk.cc,passwords_exceptions_window_gtk.h,passwords_page_gtk.cc,passwords_page_gtk.h,url_picker_dialog_gtk.cc,url_picker_dialog_gtk.h}
937+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
938+License: global BSD-style Chromium
939+
940+Files: chromium/src/chrome/browser/gtk/tabs/{tab_gtk.cc,tab_renderer_gtk.h}
941+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
942+License: global BSD-style Chromium
943+
944+Files: chromium/src/chrome/browser/gtk/tabs/{dragged_tab_controller_gtk.cc,dragged_tab_controller_gtk.h,dragged_tab_gtk.cc,dragged_tab_gtk.h,tab_gtk.h,tab_renderer_gtk.cc,tab_renderer_gtk_unittest.cc,tab_strip_gtk.h}
945+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
946+License: global BSD-style Chromium
947+
948+Files: chromium/src/chrome/browser/gtk/tabs/{tab_strip_gtk.cc}
949+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
950+License: global BSD-style Chromium
951+
952+Files: chromium/src/chrome/browser/hang_monitor/{hung_plugin_action.cc,hung_plugin_action.h,hung_window_detector.cc,hung_window_detector.h}
953+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
954+License: global BSD-style Chromium
955+
956+Files: chromium/src/chrome/browser/history/{visit_tracker.h}
957+Copyright: Copyright: 2006-2008 The Chromium Authors. All rights reserved:
958+License: GENERATED FILE
959+
960+Files: chromium/src/chrome/browser/history/{download_types.h,expire_history_backend.cc,history_marshaling.h,history_notifications.h,history_types.cc,history_types_unittest.cc,in_memory_history_backend.h,page_usage_data.cc,page_usage_data.h,query_parser.cc,query_parser.h,query_parser_unittest.cc,redirect_uitest.cc,snippet.cc,snippet.h,snippet_unittest.cc,starred_url_database_unittest.cc,text_database_manager.h,text_database_unittest.cc,visit_tracker.cc,visit_tracker_unittest.cc}
961+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
962+License: global BSD-style Chromium
963+
964+Files: chromium/src/chrome/browser/history/{history_publisher.h}
965+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
966+License: global BSD-style Chromium
967+
968+Files: chromium/src/chrome/browser/history/{history_publisher.cc,history_publisher_win.cc}
969+Copyright: Copyright (c) 2008-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
970+License: global BSD-style Chromium
971+
972+Files: chromium/src/chrome/browser/history/{archived_database.cc,archived_database.h,download_database.cc,download_database.h,expire_history_backend.h,expire_history_backend_unittest.cc,history.cc,history_backend.cc,history_backend.h,history_backend_unittest.cc,history_database.cc,history_database.h,history_publisher_none.cc,history_querying_unittest.cc,history_types.h,history_unittest.cc,in_memory_database.cc,in_memory_database.h,in_memory_history_backend.cc,starred_url_database.cc,starred_url_database.h,text_database.cc,text_database.h,text_database_manager.cc,text_database_manager_unittest.cc,thumbnail_database.cc,thumbnail_database.h,thumbnail_database_unittest.cc,top_sites.cc,top_sites.h,top_sites_unittest.cc,url_database.cc,url_database.h,url_database_unittest.cc,visit_database.cc,visit_database.h,visit_database_unittest.cc,visitsegment_database.cc,visitsegment_database.h}
973+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
974+License: global BSD-style Chromium
975+
976+Files: chromium/src/chrome/browser/history/{history.h}
977+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
978+License: global BSD-style Chromium
979+
980+Files: chromium/src/chrome/browser/importer/{nss_decryptor_linux.cc}
981+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved / 1994-2000:
982+License: MPL (v1.1)
983+
984+Files: chromium/src/chrome/browser/importer/{firefox_profile_lock_win.cc}
985+Copyright: Copyright: 2002 / 2008 The Chromium Authors. All rights reserved:
986+License: MPL (v1.1) GPL (unversioned/unknown version)
987+
988+Files: chromium/src/chrome/browser/importer/{mork_reader.cc,mork_reader.h}
989+Copyright: Copyright: 2006:
990+License: MPL (v1.1) GPL (unversioned/unknown version)
991+
992+Files: chromium/src/chrome/browser/importer/{nss_decryptor.cc,nss_decryptor_mac.h,nss_decryptor_win.h}
993+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved / 1994-2000:
994+License: MPL (v1.1) GPL (unversioned/unknown version)
995+
996+Files: chromium/src/chrome/browser/importer/{firefox_profile_lock.cc,firefox_profile_lock.h,firefox_profile_lock_posix.cc}
997+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved / 2002:
998+License: MPL (v1.1) GPL (unversioned/unknown version)
999+
1000+Files: chromium/src/chrome/browser/importer/*
1001+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1002+License: global BSD-style Chromium
1003+
1004+Files: chromium/src/chrome/browser/importer/*
1005+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1006+License: global BSD-style Chromium
1007+
1008+Files: chromium/src/chrome/browser/in_process_webkit/*
1009+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1010+License: global BSD-style Chromium
1011+
1012+Files: chromium/src/chrome/browser/in_process_webkit/*
1013+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1014+License: global BSD-style Chromium
1015+
1016+Files: chromium/src/chrome/browser/metrics/*
1017+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1018+License: global BSD-style Chromium
1019+
1020+Files: chromium/src/chrome/browser/metrics/*
1021+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1022+License: global BSD-style Chromium
1023+
1024+Files: chromium/src/chrome/browser/net/{dns_global.cc,dns_global.h,dns_host_info.cc,dns_host_info.h,dns_host_info_unittest.cc,dns_master.cc,dns_master.h,dns_master_unittest.cc,referrer.cc,referrer.h,sdch_dictionary_fetcher.cc,sdch_dictionary_fetcher.h,url_fetcher_protect.cc,url_fetcher_protect.h,url_fetcher_unittest.cc,url_fixer_upper.h,url_request_failed_dns_job.cc,url_request_failed_dns_job.h,url_request_mock_http_job.cc,url_request_mock_http_job.h,url_request_mock_net_error_job.cc,url_request_mock_net_error_job.h,url_request_slow_download_job.cc,url_request_slow_download_job.h}
1025+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1026+License: global BSD-style Chromium
1027+
1028+Files: chromium/src/chrome/browser/net/{chrome_url_request_context_unittest.cc}
1029+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1030+License: global BSD-style Chromium
1031+
1032+Files: chromium/src/chrome/browser/net/{browser_url_util.cc,browser_url_util.h,chrome_url_request_context.cc,chrome_url_request_context.h,ftp_browsertest.cc,metadata_url_request.cc,metadata_url_request.h,resolve_proxy_msg_helper.cc,resolve_proxy_msg_helper.h,resolve_proxy_msg_helper_unittest.cc,sqlite_persistent_cookie_store.cc,sqlite_persistent_cookie_store.h,ssl_config_service_manager.h,ssl_config_service_manager_pref.cc,ssl_config_service_manager_system.cc,test_url_fetcher_factory.cc,test_url_fetcher_factory.h,url_fetcher.cc,url_fetcher.h,url_fixer_upper.cc,url_fixer_upper_unittest.cc,url_request_context_getter.cc,url_request_context_getter.h,url_request_mock_link_doctor_job.cc,url_request_mock_link_doctor_job.h,url_request_mock_util.cc,url_request_mock_util.h,url_request_slow_http_job.cc,url_request_slow_http_job.h,url_request_tracking.cc,url_request_tracking.h}
1033+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1034+License: global BSD-style Chromium
1035+
1036+Files: chromium/src/chrome/browser/net/{cookie_policy_browsertest.cc}
1037+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1038+License: global BSD-style Chromium
1039+
1040+Files: chromium/src/chrome/browser/net/websocket_experiment/{websocket_experiment_runner.cc,websocket_experiment_runner.h,websocket_experiment_task.cc,websocket_experiment_task.h}
1041+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1042+License: global BSD-style Chromium
1043+
1044+Files: chromium/src/chrome/browser/notifications/{notifications_uitest.cc}
1045+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1046+License: global BSD-style Chromium
1047+
1048+Files: chromium/src/chrome/browser/notifications/{balloon.cc,balloon.h,balloon_collection.cc,balloon_collection.h,balloon_collection_linux.cc,balloon_collection_win.cc,desktop_notification_service.h,desktop_notifications_unittest.cc,desktop_notifications_unittest.h,notification.h,notification_object_proxy.cc,notification_object_proxy.h,notification_ui_manager.cc,notification_ui_manager.h,notifications_prefs_cache.cc,notifications_prefs_cache.h}
1049+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1050+License: global BSD-style Chromium
1051+
1052+Files: chromium/src/chrome/browser/notifications/{desktop_notification_service.cc}
1053+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1054+License: global BSD-style Chromium
1055+
1056+Files: chromium/src/chrome/browser/parsers/{metadata_parser.cc,metadata_parser.h,metadata_parser_factory.h,metadata_parser_filebase.cc,metadata_parser_filebase.h,metadata_parser_jpeg.cc,metadata_parser_jpeg.h,metadata_parser_jpeg_factory.cc,metadata_parser_jpeg_factory.h,metadata_parser_manager.cc,metadata_parser_manager.h}
1057+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1058+License: global BSD-style Chromium
1059+
1060+Files: chromium/src/chrome/browser/password_manager/{encryptor.h,encryptor_linux.cc,encryptor_unittest.cc,encryptor_win.cc,ie7_password.cc,ie7_password.h,password_form_manager.cc,password_form_manager.h,password_form_manager_unittest.cc,password_manager.cc,password_manager.h}
1061+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1062+License: global BSD-style Chromium
1063+
1064+Files: chromium/src/chrome/browser/password_manager/{password_store.cc,password_store.h,password_store_default.cc,password_store_default.h,password_store_gnome.cc,password_store_gnome.h,password_store_kwallet.cc,password_store_kwallet.h,password_store_win.h}
1065+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1066+License: global BSD-style Chromium
1067+
1068+Files: chromium/src/chrome/browser/password_manager/{login_database.cc,login_database.h,login_database_mac.cc,login_database_mac.h,login_database_unittest.cc,password_store_mac.cc,password_store_mac.h,password_store_mac_internal.h,password_store_mac_unittest.cc,password_store_win.cc}
1069+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1070+License: global BSD-style Chromium
1071+
1072+Files: chromium/src/chrome/browser/printing/{print_job.cc,print_job.h,print_job_manager.cc,print_job_manager.h,print_job_worker.cc,print_job_worker.h,print_job_worker_owner.h,print_view_manager.cc,print_view_manager.h,printer_query.cc,printer_query.h}
1073+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1074+License: global BSD-style Chromium
1075+
1076+Files: chromium/src/chrome/browser/printing/{printing_layout_uitest.cc}
1077+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1078+License: global BSD-style Chromium
1079+
1080+Files: chromium/src/chrome/browser/printing/{print_job_unittest.cc}
1081+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1082+License: global BSD-style Chromium
1083+
1084+Files: chromium/src/chrome/browser/printing/{print_dialog_gtk.cc,print_dialog_gtk.h}
1085+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1086+License: global BSD-style Chromium
1087+
1088+Files: chromium/src/chrome/browser/privacy_blacklist/*
1089+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1090+License: global BSD-style Chromium
1091+
1092+Files: chromium/src/chrome/browser/privacy_blacklist/*
1093+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1094+License: global BSD-style Chromium
1095+
1096+Files: chromium/src/chrome/browser/renderer_host/{x509_user_cert_resource_handler.h}
1097+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
1098+License: GENERATED FILE
1099+
1100+Files: chromium/src/chrome/browser/renderer_host/{async_resource_handler.h,browser_render_process_host.h,buffered_resource_handler.h,cross_site_resource_handler.h,download_resource_handler.cc,download_resource_handler.h,download_throttling_resource_handler.cc,download_throttling_resource_handler.h,render_widget_helper.cc,render_widget_helper.h,render_widget_host_view.h,render_widget_host_view_mac.h,resource_dispatcher_host_uitest.cc,resource_dispatcher_host_unittest.cc,resource_handler.h,safe_browsing_resource_handler.h,save_file_resource_handler.cc,save_file_resource_handler.h,site_instance.cc,sync_resource_handler.cc,sync_resource_handler.h,web_cache_manager_unittest.cc}
1101+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1102+License: global BSD-style Chromium
1103+
1104+Files: chromium/src/chrome/browser/renderer_host/{gtk_key_bindings_handler.h,render_process_host_dummy.cc,render_widget_host_view_gtk.h,resource_message_filter_win.cc}
1105+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1106+License: global BSD-style Chromium
1107+
1108+Files: chromium/src/chrome/browser/renderer_host/{async_resource_handler.cc,audio_renderer_host.cc,audio_renderer_host.h,audio_renderer_host_unittest.cc,backing_store_gl.cc,backing_store_manager_glx.cc,backing_store_manager_glx.h,browser_render_process_host.cc,buffered_resource_handler.cc,cross_site_resource_handler.cc,database_dispatcher_host.cc,database_dispatcher_host.h,global_request_id.h,gtk_im_context_wrapper.cc,gtk_im_context_wrapper.h,gtk_key_bindings_handler.cc,gtk_key_bindings_handler_unittest.cc,mock_render_process_host.cc,mock_render_process_host.h,render_process_host.cc,render_process_host.h,render_sandbox_host_linux.cc,render_sandbox_host_linux.h,render_view_host.cc,render_view_host.h,render_view_host_delegate.cc,render_view_host_delegate.h,render_view_host_factory.cc,render_view_host_factory.h,render_widget_host.h,render_widget_host_painting_observer.h,render_widget_host_unittest.cc,resource_dispatcher_host.cc,resource_dispatcher_host.h,resource_dispatcher_host_request_info.cc,resource_dispatcher_host_request_info.h,resource_message_filter.cc,resource_message_filter.h,resource_message_filter_gtk.cc,resource_queue.cc,resource_queue.h,resource_queue_unittest.cc,resource_request_details.h,site_instance.h,socket_stream_dispatcher_host.cc,socket_stream_dispatcher_host.h,socket_stream_host.cc,socket_stream_host.h,web_cache_manager.cc,web_cache_manager.h,x509_user_cert_resource_handler.cc}
1109+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1110+License: global BSD-style Chromium
1111+
1112+Files: chromium/src/chrome/browser/renderer_host/{backing_store.cc,backing_store.h,backing_store_glx.h,backing_store_mac.h,backing_store_manager.cc,backing_store_manager.h,backing_store_proxy.cc,backing_store_proxy.h,backing_store_win.cc,backing_store_win.h,backing_store_x.cc,backing_store_x.h,gpu_view_host.cc,gpu_view_host.h,render_widget_host.cc,render_widget_host_view_gtk.cc,render_widget_host_view_win.cc,render_widget_host_view_win.h,safe_browsing_resource_handler.cc,translation_service.cc,translation_service.h}
1113+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1114+License: global BSD-style Chromium
1115+
1116+Files: chromium/src/chrome/browser/renderer_host/test/*
1117+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1118+License: global BSD-style Chromium
1119+
1120+Files: chromium/src/chrome/browser/renderer_host/test/*
1121+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1122+License: global BSD-style Chromium
1123+
1124+Files: chromium/src/chrome/browser/rlz/*
1125+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1126+License: global BSD-style Chromium
1127+
1128+Files: chromium/src/chrome/browser/rlz/*
1129+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1130+License: global BSD-style Chromium
1131+
1132+Files: chromium/src/chrome/browser/safe_browsing/{chunk_range.cc,chunk_range.h,chunk_range_unittest.cc,protocol_manager.cc,protocol_manager.h,protocol_manager_unittest.cc,protocol_parser.cc,protocol_parser.h,protocol_parser_unittest.cc,safe_browsing_blocking_page.cc,safe_browsing_blocking_page.h,safe_browsing_database_unittest.cc,safe_browsing_util_unittest.cc}
1133+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1134+License: global BSD-style Chromium
1135+
1136+Files: chromium/src/chrome/browser/safe_browsing/{bloom_filter.cc,bloom_filter.h,bloom_filter_unittest.cc,filter_false_positive_perftest.cc,safe_browsing_database.cc,safe_browsing_database.h,safe_browsing_database_bloom.cc,safe_browsing_database_bloom.h,safe_browsing_service.cc,safe_browsing_service.h,safe_browsing_util.cc,safe_browsing_util.h}
1137+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1138+License: global BSD-style Chromium
1139+
1140+Files: chromium/src/chrome/browser/safe_browsing/{safe_browsing_blocking_page_unittest.cc}
1141+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1142+License: global BSD-style Chromium
1143+
1144+Files: chromium/src/chrome/browser/search_engines/{template_url.cc,template_url_fetcher.cc,template_url_fetcher.h,template_url_parser.cc,template_url_parser.h,template_url_parser_unittest.cc,template_url_prepopulate_data.cc,template_url_prepopulate_data.h,template_url_unittest.cc}
1145+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1146+License: global BSD-style Chromium
1147+
1148+Files: chromium/src/chrome/browser/search_engines/{template_url_prepopulate_data_unittest.cc}
1149+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1150+License: global BSD-style Chromium
1151+
1152+Files: chromium/src/chrome/browser/search_engines/{edit_search_engine_controller.cc,edit_search_engine_controller.h,keyword_editor_controller.cc,keyword_editor_controller.h,keyword_editor_controller_unittest.cc,template_url.h,template_url_model.cc,template_url_model.h,template_url_model_unittest.cc,template_url_scraper_unittest.cc,template_url_table_model.cc,template_url_table_model.h}
1153+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1154+License: global BSD-style Chromium
1155+
1156+Files: chromium/src/chrome/browser/sessions/{base_session_service.cc,base_session_service.h,session_backend.cc,session_backend.h,session_backend_unittest.cc,session_command.cc,session_command.h,session_id.cc,session_id.h,session_restore.cc,session_restore.h,session_restore_uitest.cc,session_service.cc,session_service.h,session_service_test_helper.cc,session_service_test_helper.h,session_service_unittest.cc,session_types.cc,session_types.h,tab_restore_service.cc,tab_restore_service.h,tab_restore_service_unittest.cc}
1157+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1158+License: global BSD-style Chromium
1159+
1160+Files: chromium/src/chrome/browser/ssl/{ssl_blocking_page.cc,ssl_blocking_page.h,ssl_error_info.cc,ssl_manager.h,ssl_policy.cc,ssl_policy.h}
1161+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1162+License: global BSD-style Chromium
1163+
1164+Files: chromium/src/chrome/browser/ssl/{ssl_error_info.h,ssl_host_state.cc,ssl_host_state.h}
1165+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1166+License: global BSD-style Chromium
1167+
1168+Files: chromium/src/chrome/browser/ssl/{ssl_browser_tests.cc,ssl_cert_error_handler.cc,ssl_cert_error_handler.h,ssl_client_auth_handler.cc,ssl_client_auth_handler.h,ssl_error_handler.cc,ssl_error_handler.h,ssl_host_state_unittest.cc,ssl_manager.cc,ssl_policy_backend.cc,ssl_policy_backend.h,ssl_request_info.h}
1169+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1170+License: global BSD-style Chromium
1171+
1172+Files: chromium/src/chrome/browser/sync/*
1173+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1174+License: global BSD-style Chromium
1175+
1176+Files: chromium/src/chrome/browser/sync/*
1177+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1178+License: global BSD-style Chromium
1179+
1180+Files: chromium/src/chrome/browser/sync/engine/{syncer_proto_util.cc,syncer_proto_util.h,syncer_proto_util_unittest.cc,syncer_util.cc,syncer_util.h}
1181+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1182+License: global BSD-style Chromium
1183+
1184+Files: chromium/src/chrome/browser/sync/engine/{all_status.cc,all_status.h,all_status_unittest.cc,apply_updates_command.cc,apply_updates_command.h,apply_updates_command_unittest.cc,auth_watcher.cc,auth_watcher.h,authenticator.cc,authenticator.h,build_and_process_conflict_sets_command.cc,build_and_process_conflict_sets_command.h,build_commit_command.cc,build_commit_command.h,change_reorder_buffer.cc,change_reorder_buffer.h,conflict_resolver.h,download_updates_command.cc,download_updates_command.h,get_commit_ids_command.cc,get_commit_ids_command.h,model_changing_syncer_command.cc,model_changing_syncer_command.h,model_safe_worker.h,post_commit_message_command.cc,post_commit_message_command.h,process_commit_response_command.cc,process_commit_response_command.h,process_updates_command.cc,process_updates_command.h,resolve_conflicts_command.cc,resolve_conflicts_command.h,syncapi.cc}
1185+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1186+License: global BSD-style Chromium
1187+
1188+Files: chromium/src/chrome/browser/sync/engine/{auth_watcher_unittest.cc,conflict_resolver.cc,syncapi.h,syncer.cc,syncer.h,syncer_command.cc,syncer_command.h,syncer_end_command.cc,syncer_end_command.h,syncer_thread.cc,syncer_thread.h,syncer_thread_unittest.cc,syncer_types.h,syncer_unittest.cc,syncproto.h,syncproto_unittest.cc,update_applicator.cc,update_applicator.h,verify_updates_command.cc,verify_updates_command.h}
1189+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1190+License: global BSD-style Chromium
1191+
1192+Files: chromium/src/chrome/browser/sync/engine/net/{gaia_authenticator.cc,gaia_authenticator.h,gaia_authenticator_unittest.cc,http_return.h,server_connection_manager.cc,server_connection_manager.h,syncapi_server_connection_manager.cc,syncapi_server_connection_manager.h,url_translator.cc,url_translator.h}
1193+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1194+License: global BSD-style Chromium
1195+
1196+Files: chromium/src/chrome/browser/sync/glue/{http_bridge.cc,http_bridge.h,http_bridge_unittest.cc,sync_backend_host.cc,sync_backend_host.h,ui_model_worker.cc,ui_model_worker.h}
1197+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1198+License: global BSD-style Chromium
1199+
1200+Files: chromium/src/chrome/browser/sync/glue/{bookmark_change_processor.cc,bookmark_change_processor.h,bookmark_model_associator.cc,bookmark_model_associator.h,change_processor.cc,change_processor.h,model_associator.h,preference_change_processor.cc,preference_model_associator.cc,ui_model_worker_unittest.cc}
1201+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1202+License: global BSD-style Chromium
1203+
1204+Files: chromium/src/chrome/browser/sync/glue/{preference_change_processor.h,preference_model_associator.h}
1205+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1206+License: global BSD-style Chromium
1207+
1208+Files: chromium/src/chrome/browser/sync/notifier/base/{async_dns_lookup.cc,async_dns_lookup.h,async_network_alive.h,fastalloc.h,nethelpers.cc,nethelpers.h,network_status_detector_task.cc,network_status_detector_task.h,network_status_detector_task_mt.cc,network_status_detector_task_mt.h,signal_thread_task.h,ssl_adapter.cc,ssl_adapter.h,static_assert.h,task_pump.cc,task_pump.h,time.cc,time.h,time_unittest.cc,timer.cc,timer.h,utils.h}
1209+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1210+License: global BSD-style Chromium
1211+
1212+Files: chromium/src/chrome/browser/sync/notifier/base/linux/{network_status_detector_task_linux.cc}
1213+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1214+License: global BSD-style Chromium
1215+
1216+Files: chromium/src/chrome/browser/sync/notifier/base/mac/{network_status_detector_task_mac.cc,network_status_detector_task_mac.h,network_status_detector_task_mac_unittest.cc}
1217+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1218+License: global BSD-style Chromium
1219+
1220+Files: chromium/src/chrome/browser/sync/notifier/base/posix/{time_posix.cc}
1221+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1222+License: global BSD-style Chromium
1223+
1224+Files: chromium/src/chrome/browser/sync/notifier/base/win/{async_network_alive_win32.cc,time_win32.cc}
1225+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1226+License: global BSD-style Chromium
1227+
1228+Files: chromium/src/chrome/browser/sync/notifier/communicator/{auth_task.cc,auth_task.h,auto_reconnect.cc,auto_reconnect.h,connection_options.cc,connection_options.h,connection_settings.cc,connection_settings.h,const_communicator.h,login.cc,login.h,login_failure.cc,login_failure.h,login_settings.cc,login_settings.h,mailbox.cc,mailbox.h,mailbox_unittest.cc,product_info.cc,product_info.h,single_login_attempt.cc,single_login_attempt.h,ssl_socket_adapter.cc,ssl_socket_adapter.h,talk_auth_task.cc,talk_auth_task.h,xmpp_connection_generator.cc,xmpp_connection_generator.h,xmpp_log.cc,xmpp_log.h,xmpp_socket_adapter.cc,xmpp_socket_adapter.h}
1229+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1230+License: global BSD-style Chromium
1231+
1232+Files: chromium/src/chrome/browser/sync/notifier/gaia_auth/{gaiaauth.cc,gaiaauth.h,gaiahelper.cc,gaiahelper.h,inet_aton.h,sigslotrepeater.h}
1233+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1234+License: global BSD-style Chromium
1235+
1236+Files: chromium/src/chrome/browser/sync/notifier/gaia_auth/win/{win32window.cc}
1237+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1238+License: global BSD-style Chromium
1239+
1240+Files: chromium/src/chrome/browser/sync/notifier/listener/{listen_task.cc,listen_task.h,mediator_thread.h,mediator_thread_impl.cc,mediator_thread_impl.h,mediator_thread_mock.h,send_update_task.cc,send_update_task.h,subscribe_task.cc,subscribe_task.h,talk_mediator.h,talk_mediator_impl.cc,talk_mediator_impl.h,talk_mediator_unittest.cc}
1241+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1242+License: global BSD-style Chromium
1243+
1244+Files: chromium/src/chrome/browser/sync/protocol/{service_constants.h}
1245+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1246+License: global BSD-style Chromium
1247+
1248+Files: chromium/src/chrome/browser/sync/sessions/{session_state.cc,session_state.h,status_controller.cc,status_controller.h,status_controller_unittest.cc,sync_session.cc,sync_session.h,sync_session_context.h,sync_session_unittest.cc}
1249+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1250+License: global BSD-style Chromium
1251+
1252+Files: chromium/src/chrome/browser/sync/syncable/{syncable_changes_version.h}
1253+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
1254+License: ZERO-CODE-FILES or GENERATED
1255+
1256+Files: chromium/src/chrome/browser/sync/syncable/*
1257+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1258+License: global BSD-style Chromium
1259+
1260+Files: chromium/src/chrome/browser/sync/syncable/*
1261+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1262+License: global BSD-style Chromium
1263+
1264+Files: chromium/src/chrome/browser/sync/util/*
1265+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1266+License: global BSD-style Chromium
1267+
1268+Files: chromium/src/chrome/browser/sync/util/*
1269+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1270+License: global BSD-style Chromium
1271+
1272+Files: chromium/src/chrome/browser/tab_contents/{constrained_window.h,infobar_delegate.cc,infobar_delegate.h,interstitial_page.cc,navigation_entry.cc,navigation_entry.h,page_navigator.h,provisional_load_details.cc,provisional_load_details.h,security_style.h,tab_contents_delegate.h,tab_contents_view.cc,tab_contents_view.h,tab_util.cc,tab_util.h,view_source_uitest.cc,web_drag_source_win.cc,web_drag_source_win.h,web_drop_target_win.h}
1273+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1274+License: global BSD-style Chromium
1275+
1276+Files: chromium/src/chrome/browser/tab_contents/{render_view_context_menu.h}
1277+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1278+License: global BSD-style Chromium
1279+
1280+Files: chromium/src/chrome/browser/tab_contents/{interstitial_page.h,navigation_controller.cc,navigation_controller.h,navigation_controller_unittest.cc,navigation_entry_unittest.cc,render_view_context_menu_gtk.cc,render_view_context_menu_gtk.h,render_view_context_menu_mac.h,render_view_host_delegate_helper.cc,render_view_host_delegate_helper.h,render_view_host_manager.cc,render_view_host_manager.h,render_view_host_manager_unittest.cc,tab_contents.cc,tab_contents.h,tab_contents_view_gtk.cc,tab_contents_view_gtk.h,tab_contents_view_mac.h,test_tab_contents.cc,test_tab_contents.h,thumbnail_generator.cc,thumbnail_generator.h,thumbnail_generator_unittest.cc,web_drag_dest_gtk.cc,web_drag_dest_gtk.h,web_drop_target_win.cc}
1281+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1282+License: global BSD-style Chromium
1283+
1284+Files: chromium/src/chrome/browser/tab_contents/{render_view_context_menu.cc,web_contents_unittest.cc}
1285+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1286+License: global BSD-style Chromium
1287+
1288+Files: chromium/src/chrome/browser/tabs/{tab_strip_model.cc,tab_strip_model.h,tab_strip_model_order_controller.cc,tab_strip_model_order_controller.h,tab_strip_model_unittest.cc}
1289+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1290+License: global BSD-style Chromium
1291+
1292+Files: chromium/src/chrome/browser/views/{about_chrome_view.h,bookmark_bar_view_test.cc,bookmark_context_menu_test.cc,bookmark_editor_view_unittest.cc,bookmark_folder_tree_view.cc,bookmark_folder_tree_view.h,bookmark_table_view.cc,bookmark_table_view.h,clear_browsing_data.cc,clear_browsing_data.h,constrained_window_win.cc,constrained_window_win.h,dom_view.cc,dom_view.h,download_item_view.cc,download_item_view.h,download_shelf_view.cc,download_shelf_view.h,event_utils.cc,event_utils.h,find_bar_host_interactive_uitest.cc,go_button.cc,go_button.h,html_dialog_view.cc,html_dialog_view.h,hung_renderer_view.cc,importer_lock_view.cc,importer_lock_view.h,importer_view.cc,importer_view.h,importing_progress_view.cc,importing_progress_view.h,info_bubble.cc,jsmessage_box_dialog.cc,jsmessage_box_dialog.h,keyword_editor_view.h,login_view.cc,login_view.h,repost_form_warning_view.cc,repost_form_warning_view.h,restart_message_box.cc,restart_message_box.h,sad_tab_view.cc,sad_tab_view.h,select_profile_dialog.cc,select_profile_dialog.h,shell_dialogs_win.cc,star_toggle.cc,star_toggle.h,status_bubble_views.cc,status_bubble_views.h,tab_icon_view.cc,tab_icon_view.h,theme_helpers.cc,theme_helpers.h,toolbar_star_toggle.cc,toolbar_star_toggle.h,user_data_dir_dialog.cc,user_data_dir_dialog.h}
1293+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1294+License: global BSD-style Chromium
1295+
1296+Files: chromium/src/chrome/browser/views/{dropdown_bar_host.cc,dropdown_bar_host.h,dropdown_bar_host_gtk.cc,dropdown_bar_host_win.cc,find_bar_host.cc,find_bar_host.h,find_bar_host_gtk.cc,find_bar_host_win.cc,first_run_customize_view.cc,first_run_view.cc}
1297+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1298+License: global BSD-style Chromium
1299+
1300+Files: chromium/src/chrome/browser/views/{unhandled_keyboard_event_handler.h}
1301+Copyright: Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1302+License: global BSD-style Chromium
1303+
1304+Files: chromium/src/chrome/browser/views/{blocked_popup_container_view_views.cc,blocked_popup_container_view_views.h}
1305+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1306+License: global BSD-style Chromium
1307+
1308+Files: chromium/src/chrome/browser/views/{PRESUBMIT.py,about_chrome_view.cc,about_ipc_dialog.cc,about_ipc_dialog.h,about_network_dialog.cc,about_network_dialog.h,accelerator_table_gtk.cc,accelerator_table_gtk.h,accessible_toolbar_view.cc,accessible_toolbar_view.h,bookmark_bar_instructions_view.cc,bookmark_bar_instructions_view.h,bookmark_bar_view.cc,bookmark_bar_view.h,bookmark_bubble_view.cc,bookmark_bubble_view.h,bookmark_context_menu.cc,bookmark_context_menu.h,bookmark_editor_view.cc,bookmark_editor_view.h,bookmark_manager_view.cc,bookmark_manager_view.h,bookmark_menu_button.cc,bookmark_menu_button.h,bookmark_menu_controller_views.cc,bookmark_menu_controller_views.h,browser_bubble.cc,browser_bubble.h,browser_bubble_gtk.cc,browser_bubble_win.cc,browser_dialogs.h,browser_views_accessibility_browsertest.cc,bubble_border.cc,bubble_border.h,bug_report_view.h,chrome_views_delegate.cc,chrome_views_delegate.h,confirm_message_box_dialog.cc,confirm_message_box_dialog.h,create_application_shortcut_view.cc,create_application_shortcut_view.h,detachable_toolbar_view.cc,dialog_stubs_gtk.cc,download_started_animation_win.cc,dropdown_bar_view.h,edit_search_engine_dialog.cc,edit_search_engine_dialog.h,external_protocol_dialog.cc,external_protocol_dialog.h,find_bar_host_browsertest.cc,find_bar_host_uitest.cc,find_bar_view.cc,find_bar_view.h,first_run_bubble.cc,first_run_bubble.h,first_run_customize_view.h,first_run_view.h,first_run_view_base.cc,first_run_view_base.h,fullscreen_exit_bubble.cc,fullscreen_exit_bubble.h,info_bubble.h,keyword_editor_view.cc,new_browser_window_widget.cc,new_browser_window_widget.h,new_profile_dialog.cc,new_profile_dialog.h,page_info_window_view.cc,task_manager_view.cc,theme_install_bubble_view.cc,theme_install_bubble_view.h,toolbar_view.h,uninstall_view.cc,uninstall_view.h,url_picker.cc,url_picker.h}
1309+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1310+License: global BSD-style Chromium
1311+
1312+Files: chromium/src/chrome/browser/views/{browser_actions_container.cc,browser_actions_container.h,bug_report_view.cc,detachable_toolbar_view.h,location_bar_view.cc,location_bar_view.h,theme_background.cc,theme_background.h,toolbar_view.cc,unhandled_keyboard_event_handler.cc}
1313+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1314+License: global BSD-style Chromium
1315+
1316+Files: chromium/src/chrome/browser/views/autocomplete/{autocomplete_popup_contents_view.cc,autocomplete_popup_contents_view.h,autocomplete_popup_gtk.cc,autocomplete_popup_gtk.h,autocomplete_popup_win.cc,autocomplete_popup_win.h}
1317+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1318+License: global BSD-style Chromium
1319+
1320+Files: chromium/src/chrome/browser/views/extensions/{extension_view.cc,extension_view.h}
1321+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1322+License: global BSD-style Chromium
1323+
1324+Files: chromium/src/chrome/browser/views/extensions/{extension_action_context_menu.cc,extension_action_context_menu.h,extension_install_prompt.cc,extension_popup.cc,extension_popup.h,extension_shelf.cc,extension_shelf.h}
1325+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1326+License: global BSD-style Chromium
1327+
1328+Files: chromium/src/chrome/browser/views/extensions/{extension_installed_bubble.cc,extension_installed_bubble.h}
1329+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1330+License: global BSD-style Chromium
1331+
1332+Files: chromium/src/chrome/browser/views/frame/{browser_frame.h,browser_frame_win.cc,browser_frame_win.h,glass_browser_frame_view.cc,glass_browser_frame_view.h,opaque_browser_frame_view.cc,opaque_browser_frame_view.h}
1333+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1334+License: global BSD-style Chromium
1335+
1336+Files: chromium/src/chrome/browser/views/frame/{browser_view.h}
1337+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1338+License: global BSD-style Chromium
1339+
1340+Files: chromium/src/chrome/browser/views/frame/{browser_extender.cc,browser_extender.h,browser_frame_gtk.cc,browser_frame_gtk.h,browser_non_client_frame_view.h,browser_root_view.cc,browser_root_view.h,browser_view.cc,standard_extender.cc}
1341+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1342+License: global BSD-style Chromium
1343+
1344+Files: chromium/src/chrome/browser/views/frame/{browser_view_layout_manager.h,chrome_browser_view_layout_manager.cc,chrome_browser_view_layout_manager.h}
1345+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1346+License: global BSD-style Chromium
1347+
1348+Files: chromium/src/chrome/browser/views/infobars/*
1349+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1350+License: global BSD-style Chromium
1351+
1352+Files: chromium/src/chrome/browser/views/infobars/*
1353+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1354+License: global BSD-style Chromium
1355+
1356+Files: chromium/src/chrome/browser/views/notifications/{balloon_view.cc,balloon_view.h,balloon_view_host.cc,balloon_view_host.h,balloon_view_host_gtk.cc}
1357+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1358+License: global BSD-style Chromium
1359+
1360+Files: chromium/src/chrome/browser/views/options/{advanced_contents_view.h,advanced_page_view.cc,advanced_page_view.h,fonts_languages_window_view.cc,fonts_page_view.h,languages_page_view.h,options_group_view.h,options_page_view.cc,options_page_view.h,options_window_view.cc}
1361+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1362+License: global BSD-style Chromium
1363+
1364+Files: chromium/src/chrome/browser/views/options/{advanced_contents_view.cc,content_page_view.cc,content_page_view.h,cookies_view.h,exceptions_page_view.cc,exceptions_page_view.h,fonts_languages_window_view.h,fonts_page_view.cc,general_page_view.h,languages_page_view.cc,options_group_view.cc,passwords_exceptions_window_view.cc,passwords_exceptions_window_view.h,passwords_page_view.cc,passwords_page_view.h}
1365+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1366+License: global BSD-style Chromium
1367+
1368+Files: chromium/src/chrome/browser/views/options/{cookies_view.cc,general_page_view.cc}
1369+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1370+License: global BSD-style Chromium
1371+
1372+Files: chromium/src/chrome/browser/views/tab_contents/*
1373+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1374+License: global BSD-style Chromium
1375+
1376+Files: chromium/src/chrome/browser/views/tab_contents/*
1377+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1378+License: global BSD-style Chromium
1379+
1380+Files: chromium/src/chrome/browser/views/tabs/*
1381+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1382+License: global BSD-style Chromium
1383+
1384+Files: chromium/src/chrome/browser/views/tabs/*
1385+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1386+License: global BSD-style Chromium
1387+
1388+Files: chromium/src/chrome/browser/web_applications/{web_app.cc,web_app.h}
1389+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1390+License: global BSD-style Chromium
1391+
1392+Files: chromium/src/chrome/browser/web_resource/{web_resource_service.cc,web_resource_service.h}
1393+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1394+License: global BSD-style Chromium
1395+
1396+Files: chromium/src/chrome/browser/webdata/*
1397+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1398+License: global BSD-style Chromium
1399+
1400+Files: chromium/src/chrome/browser/webdata/*
1401+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1402+License: global BSD-style Chromium
1403+
1404+Files: chromium/src/chrome/browser/worker_host/{message_port_dispatcher.cc,message_port_dispatcher.h,worker_process_host.cc,worker_process_host.h,worker_service.cc,worker_service.h}
1405+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1406+License: global BSD-style Chromium
1407+
1408+Files: chromium/src/chrome/common/{plugin_messages_internal.h}
1409+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
1410+License: GENERATED FILE
1411+
1412+Files: chromium/src/chrome/common/{bzip2_unittest.cc,child_process.cc,child_process.h,chrome_constants.cc,chrome_constants.h,chrome_counters.cc,chrome_counters.h,chrome_paths.cc,chrome_paths.h,chrome_paths_internal.h,chrome_paths_linux.cc,chrome_paths_win.cc,chrome_plugin_lib.cc,chrome_plugin_lib.h,chrome_plugin_unittest.cc,chrome_plugin_util.cc,chrome_plugin_util.h,common_glue.cc,common_param_traits.cc,common_param_traits_unittest.cc,debug_flags.cc,debug_flags.h,env_vars.cc,env_vars.h,filter_policy.h,gears_api.h,histogram_synchronizer.h,json_value_serializer.cc,json_value_serializer_perftest.cc,json_value_serializer_unittest.cc,jstemplate_builder.cc,jstemplate_builder.h,libxml_utils.h,logging_chrome.cc,logging_chrome.h,message_router.cc,message_router.h,native_window_notification_source.h,navigation_types.h,notification_details.h,notification_registrar.cc,notification_registrar.h,notification_service.cc,notification_service.h,notification_service_unittest.cc,notification_source.h,page_transition_types.h,pref_member.cc,pref_member.h,pref_member_unittest.cc,pref_service.h,process_watcher.h,process_watcher_win.cc,property_bag.cc,property_bag.h,ref_counted_util.h,renderer_preferences.h,resource_dispatcher.cc,resource_dispatcher.h,resource_dispatcher_dummy.cc,resource_dispatcher_unittest.cc,result_codes.h,sandbox_policy.h,security_filter_peer.h,socket_stream_dispatcher_dummy.cc,sqlite_compiled_statement.cc,sqlite_compiled_statement.h,sqlite_utils.cc,sqlite_utils.h,task_queue.cc,task_queue.h,time_format.h,time_format_unittest.cc,url_constants.cc,url_constants.h,visitedlink_common.cc,visitedlink_common.h,win_safe_util.cc,win_safe_util.h,worker_thread_ticker.cc,zip_unittest.cc}
1413+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1414+License: global BSD-style Chromium
1415+
1416+Files: chromium/src/chrome/common/{automation_constants.cc,automation_constants.h,bindings_policy.h,logging_chrome_uitest.cc,navigation_gesture.h,sandbox_policy.cc,transport_dib.h}
1417+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1418+License: global BSD-style Chromium
1419+
1420+Files: chromium/src/chrome/common/{mach_message_source_mac.cc,mach_message_source_mac.h}
1421+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1422+License: global BSD-style Chromium
1423+
1424+Files: chromium/src/chrome/common/{dom_storage_common.h,webkit_param_traits.h}
1425+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1426+License: global BSD-style Chromium
1427+
1428+Files: chromium/src/chrome/common/{child_process_host.cc,child_process_host.h,child_process_info.cc,child_process_info.h,child_process_logging.h,child_process_logging_linux.cc,child_process_logging_win.cc,child_thread.cc,child_thread.h,chrome_descriptors.h,chrome_plugin_api.h,chrome_switches.h,command_buffer_messages.h,command_buffer_messages_internal.h,common_param_traits.h,css_colors.h,db_message_filter.cc,db_message_filter.h,devtools_messages.h,devtools_messages_internal.h,edit_command.h,gpu_plugin.cc,gpu_plugin.h,gtk_tree.cc,gtk_tree.h,gtk_util.cc,gtk_util.h,histogram_synchronizer.cc,important_file_writer.cc,important_file_writer.h,important_file_writer_unittest.cc,ipc_test_sink.cc,ipc_test_sink.h,json_value_serializer.h,libxml_utils.cc,main_function_params.h,mru_cache.h,mru_cache_unittest.cc,nacl_messages.h,nacl_messages_internal.h,nacl_types.h,native_web_keyboard_event.h,native_web_keyboard_event_linux.cc,native_web_keyboard_event_win.cc,notification_observer.h,notification_observer_mock.h,notification_type.h,owned_widget_gtk.cc,owned_widget_gtk.h,page_zoom.h,platform_util.h,platform_util_linux.cc,plugin_carbon_interpose_constants_mac.cc,plugin_carbon_interpose_constants_mac.h,plugin_messages.h,pref_service.cc,pref_service_uitest.cc,pref_service_unittest.cc,process_watcher_mac.cc,process_watcher_posix.cc,process_watcher_unittest.cc,property_bag_unittest.cc,render_messages.h,render_messages_internal.h,sandbox_init_wrapper.h,sandbox_init_wrapper_linux.cc,sandbox_init_wrapper_mac.cc,sandbox_init_wrapper_win.cc,sandbox_mac.h,sandbox_methods_linux.h,security_filter_peer.cc,socket_stream_dispatcher.cc,socket_stream_dispatcher.h,spellcheck_common.cc,spellcheck_common.h,temp_scaffolding_stubs.cc,temp_scaffolding_stubs.h,thumbnail_score.cc,thumbnail_score.h,thumbnail_score_unittest.cc,time_format.cc,transport_dib_linux.cc,transport_dib_mac.cc,transport_dib_win.cc,utility_messages.h,utility_messages_internal.h,view_types.cc,view_types.h,webmessageportchannel_impl.cc,webmessageportchannel_impl.h,worker_messages.h,worker_messages_internal.h,worker_thread_ticker.h,worker_thread_ticker_unittest.cc,x11_util.cc,x11_util.h,x11_util_internal.h,zip.cc,zip.h}
1429+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1430+License: global BSD-style Chromium
1431+
1432+Files: chromium/src/chrome/common/{chrome_switches.cc,gpu_messages.h,gpu_messages_internal.h,platform_util_win.cc,pref_names.cc,pref_names.h}
1433+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1434+License: global BSD-style Chromium
1435+
1436+Files: chromium/src/chrome/common/appcache/{appcache_backend_proxy.cc,appcache_backend_proxy.h,appcache_dispatcher.cc,appcache_dispatcher.h,appcache_dispatcher_host.cc,appcache_dispatcher_host.h,appcache_frontend_proxy.cc,appcache_frontend_proxy.h,chrome_appcache_service.cc,chrome_appcache_service.h}
1437+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1438+License: global BSD-style Chromium
1439+
1440+Files: chromium/src/chrome/common/desktop_notifications/{active_notification_tracker.cc,active_notification_tracker.h}
1441+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1442+License: global BSD-style Chromium
1443+
1444+Files: chromium/src/chrome/common/extensions/{extension_error_reporter.cc,extension_error_reporter.h,extension_error_utils.h,url_pattern.cc,url_pattern.h,url_pattern_unittest.cc}
1445+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1446+License: global BSD-style Chromium
1447+
1448+Files: chromium/src/chrome/common/extensions/{extension.cc,extension.h,extension_action.cc,extension_action.h,extension_action_unittest.cc,extension_constants.cc,extension_constants.h,extension_error_utils.cc,extension_l10n_util.cc,extension_l10n_util.h,extension_l10n_util_unittest.cc,extension_message_bundle.cc,extension_message_bundle.h,extension_message_bundle_unittest.cc,extension_resource.cc,extension_resource.h,extension_resource_unittest.cc,extension_unpacker.cc,extension_unpacker.h,extension_unpacker_unittest.cc,update_manifest.cc,update_manifest.h,update_manifest_unittest.cc,user_script_unittest.cc}
1449+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1450+License: global BSD-style Chromium
1451+
1452+Files: chromium/src/chrome/common/extensions/{extension_unittest.cc}
1453+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1454+License: global BSD-style Chromium
1455+
1456+Files: chromium/src/chrome/common/extensions/{user_script.cc,user_script.h}
1457+Copyright: Copyright 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1458+License: global BSD-style Chromium
1459+
1460+Files: chromium/src/chrome/common/extensions/docs/build/{build.py}
1461+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1462+License: global BSD-style Chromium
1463+
1464+Files: chromium/src/chrome/common/gfx/{utils.h}
1465+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1466+License: global BSD-style Chromium
1467+
1468+Files: chromium/src/chrome/common/net/*
1469+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1470+License: global BSD-style Chromium
1471+
1472+Files: chromium/src/chrome/common/net/*
1473+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1474+License: global BSD-style Chromium
1475+
1476+Files: chromium/src/chrome/common/web_resource/{web_resource_unpacker.cc,web_resource_unpacker.h}
1477+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1478+License: global BSD-style Chromium
1479+
1480+Files: chromium/src/chrome/gpu/{gpu_backing_store.cc,gpu_backing_store.h,gpu_main.cc,gpu_process.cc,gpu_process.h,gpu_thread.cc,gpu_thread.h,gpu_view_win.cc,gpu_view_win.h}
1481+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1482+License: global BSD-style Chromium
1483+
1484+Files: chromium/src/chrome/installer/gcapi/*
1485+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1486+License: global BSD-style Chromium
1487+
1488+Files: chromium/src/chrome/installer/gcapi/*
1489+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1490+License: global BSD-style Chromium
1491+
1492+Files: chromium/src/chrome/installer/mini_installer/{mini_installer.cc,mini_installer.h,pe_resource.cc,pe_resource.h}
1493+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1494+License: global BSD-style Chromium
1495+
1496+Files: chromium/src/chrome/installer/mini_installer/{mini_installer_resource.h}
1497+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1498+License: global BSD-style Chromium
1499+
1500+Files: chromium/src/chrome/installer/mini_installer/{appid.h,chrome_appid.cc,chrome_frame_appid.cc}
1501+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1502+License: global BSD-style Chromium
1503+
1504+Files: chromium/src/chrome/installer/setup/{setup_constants.cc,setup_constants.h}
1505+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1506+License: global BSD-style Chromium
1507+
1508+Files: chromium/src/chrome/installer/setup/{compat_checks_unittest.cc,uninstall.h}
1509+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1510+License: global BSD-style Chromium
1511+
1512+Files: chromium/src/chrome/installer/setup/{install.cc,install.h,run_all_unittests.cc,setup_main.cc,setup_resource.h,setup_util.cc,setup_util.h,setup_util_unittest.cc,uninstall.cc}
1513+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1514+License: global BSD-style Chromium
1515+
1516+Files: chromium/src/chrome/installer/util/{version.h}
1517+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
1518+License: ZERO-CODE-FILES or GENERATED
1519+
1520+Files: chromium/src/chrome/installer/util/{create_reg_key_work_item_unittest.cc,delete_reg_value_work_item_unittest.cc,delete_tree_work_item_unittest.cc,google_update_constants.cc,google_update_constants.h,google_update_settings.h,helper.cc,helper.h,helper_unittest.cc,html_dialog.h,html_dialog_impl.cc,install_util.cc,install_util.h,l10n_string_util.h,logging_installer.cc,logging_installer.h,run_all_unittests.cc,self_reg_work_item.cc,self_reg_work_item.h,set_reg_value_work_item_unittest.cc}
1521+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1522+License: global BSD-style Chromium
1523+
1524+Files: chromium/src/chrome/installer/util/{browser_distribution.cc,browser_distribution.h,compat_checks.cc,compat_checks.h,compat_checks_unittest.cc,google_chrome_distribution.h,google_update_settings.cc,util_constants.cc,util_constants.h}
1525+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1526+License: global BSD-style Chromium
1527+
1528+Files: chromium/src/chrome/installer/util/{installer_util_unittests_resource.h}
1529+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1530+License: global BSD-style Chromium
1531+
1532+Files: chromium/src/chrome/installer/util/{browser_distribution_unittest.cc,chrome_frame_distribution.cc,chrome_frame_distribution.h,copy_tree_work_item.cc,copy_tree_work_item.h,copy_tree_work_item_unittest.cc,create_dir_work_item.cc,create_dir_work_item.h,create_dir_work_item_unittest.cc,create_reg_key_work_item.cc,create_reg_key_work_item.h,delete_after_reboot_helper.cc,delete_after_reboot_helper.h,delete_after_reboot_helper_unittest.cc,delete_reg_value_work_item.cc,delete_reg_value_work_item.h,delete_tree_work_item.cc,delete_tree_work_item.h,google_chrome_distribution.cc,google_chrome_distribution_dummy.cc,google_chrome_distribution_unittest.cc,l10n_string_util.cc,lzma_util.cc,lzma_util.h,lzma_util_unittest.cc,master_preferences.cc,master_preferences.h,master_preferences_unittest.cc,move_tree_work_item.cc,move_tree_work_item.h,move_tree_work_item_unittest.cc,set_reg_value_work_item.cc,set_reg_value_work_item.h,shell_util.cc,shell_util.h,shell_util_unittest.cc,version.cc,version_unittest.cc,work_item.cc,work_item.h,work_item_list.cc,work_item_list.h,work_item_list_unittest.cc}
1533+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1534+License: global BSD-style Chromium
1535+
1536+Files: chromium/src/chrome/installer/util/prebuild/{create_string_rc.py}
1537+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1538+License: global BSD-style Chromium
1539+
1540+Files: chromium/src/chrome/nacl/{nacl_main.cc,nacl_thread.cc,nacl_thread.h,sel_main.cc}
1541+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1542+License: global BSD-style Chromium
1543+
1544+Files: chromium/src/chrome/plugin/{plugin_channel.h}
1545+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
1546+License: GENERATED FILE
1547+
1548+Files: chromium/src/chrome/plugin/{chrome_plugin_host.h,npobject_proxy.cc,npobject_proxy.h,npobject_stub.cc,npobject_stub.h,npobject_util.cc,npobject_util.h,plugin_channel_base.h,plugin_main.cc,plugin_thread.cc}
1549+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1550+License: global BSD-style Chromium
1551+
1552+Files: chromium/src/chrome/plugin/{npobject_base.h}
1553+Copyright: Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1554+License: global BSD-style Chromium
1555+
1556+Files: chromium/src/chrome/plugin/{chrome_plugin_host.cc,command_buffer_stub.cc,command_buffer_stub.h,plugin_channel.cc,plugin_channel_base.cc,plugin_interpose_util_mac.h,plugin_main_linux.cc,plugin_thread.h,webplugin_delegate_stub.cc,webplugin_delegate_stub.h,webplugin_proxy.cc,webplugin_proxy.h}
1557+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1558+License: global BSD-style Chromium
1559+
1560+Files: chromium/src/chrome/profile_import/{profile_import_main.cc,profile_import_thread.cc,profile_import_thread.h}
1561+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1562+License: global BSD-style Chromium
1563+
1564+Files: chromium/src/chrome/renderer/{visitedlink_slave.h}
1565+Copyright: Copyright: 2006-2008 The Chromium Authors. All rights reserved:
1566+License: GENERATED FILE
1567+
1568+Files: chromium/src/chrome/renderer/{about_handler.cc,about_handler.h,dom_ui_bindings.cc,dom_ui_bindings.h,external_host_bindings.cc,external_host_bindings.h,loadtimes_extension_bindings.h,localized_error.cc,localized_error.h,plugin_channel_host.cc,plugin_channel_host.h,render_process.cc,render_process.h,render_widget_unittest.cc,renderer_histogram_snapshots.cc,renderer_histogram_snapshots.h,renderer_main.cc,visitedlink_slave.cc}
1569+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1570+License: global BSD-style Chromium
1571+
1572+Files: chromium/src/chrome/renderer/{loadtimes_extension_bindings.cc}
1573+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1574+License: global BSD-style Chromium
1575+
1576+Files: chromium/src/chrome/renderer/{mock_render_process.h,render_thread_unittest.cc}
1577+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1578+License: global BSD-style Chromium
1579+
1580+Files: chromium/src/chrome/renderer/{webmediaplayer_impl.h}
1581+Copyright: Copyright (c) 2008-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1582+License: global BSD-style Chromium
1583+
1584+Files: chromium/src/chrome/renderer/{renderer_sandbox_support_linux.cc,renderer_sandbox_support_linux.h,renderer_web_database_observer.h,renderer_webkitclient_impl.cc,renderer_webkitclient_impl.h,renderer_webstoragearea_impl.cc,renderer_webstoragearea_impl.h,renderer_webstoragenamespace_impl.cc,renderer_webstoragenamespace_impl.h,websharedworkerrepository_impl.cc,websharedworkerrepository_impl.h}
1585+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1586+License: global BSD-style Chromium
1587+
1588+Files: chromium/src/chrome/renderer/{audio_message_filter.cc,audio_message_filter.h,audio_message_filter_unittest.cc,command_buffer_proxy.cc,command_buffer_proxy.h,devtools_agent.cc,devtools_agent.h,devtools_agent_filter.cc,devtools_agent_filter.h,devtools_client.cc,devtools_client.h,extension_groups.h,external_extension.cc,external_extension.h,mock_keyboard.cc,mock_keyboard.h,mock_keyboard_driver_win.cc,mock_keyboard_driver_win.h,mock_printer.cc,mock_printer.h,mock_render_thread.cc,mock_render_thread.h,navigation_state.h,notification_provider.cc,notification_provider.h,paint_aggregator.cc,paint_aggregator.h,paint_aggregator_unittest.cc,print_web_view_helper.cc,print_web_view_helper.h,print_web_view_helper_linux.cc,print_web_view_helper_win.cc,render_process_unittest.cc,render_thread.cc,render_thread.h,render_view.h,render_view_linux.cc,render_view_unittest.cc,render_view_visitor.h,render_widget.cc,render_widget.h,renderer_glue.cc,renderer_main_platform_delegate.h,renderer_main_platform_delegate_linux.cc,renderer_main_platform_delegate_win.cc,renderer_main_unittest.cc,renderer_web_database_observer.cc,user_script_idle_scheduler.cc,user_script_idle_scheduler.h,user_script_slave.cc,user_script_slave.h,webplugin_delegate_pepper.cc,webplugin_delegate_pepper.h,webplugin_delegate_proxy.cc,webplugin_delegate_proxy.h,websharedworker_proxy.cc,websharedworker_proxy.h,webworker_base.cc,webworker_base.h,webworker_proxy.cc,webworker_proxy.h}
1589+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1590+License: global BSD-style Chromium
1591+
1592+Files: chromium/src/chrome/renderer/{render_view.cc}
1593+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1594+License: global BSD-style Chromium
1595+
1596+Files: chromium/src/chrome/renderer/automation/{dom_automation_controller.cc,dom_automation_controller.h}
1597+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1598+License: global BSD-style Chromium
1599+
1600+Files: chromium/src/chrome/renderer/extensions/{bindings_utils.cc,bindings_utils.h,event_bindings.cc,event_bindings.h,extension_api_client_unittest.cc,extension_process_bindings.cc,extension_process_bindings.h,js_only_v8_extensions.cc,js_only_v8_extensions.h,json_schema_unittest.cc,renderer_extension_bindings.cc,renderer_extension_bindings.h}
1601+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1602+License: global BSD-style Chromium
1603+
1604+Files: chromium/src/chrome/renderer/media/*
1605+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1606+License: global BSD-style Chromium
1607+
1608+Files: chromium/src/chrome/renderer/media/*
1609+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1610+License: global BSD-style Chromium
1611+
1612+Files: chromium/src/chrome/renderer/net/{render_dns_master.cc,render_dns_master.h,render_dns_master_unittest.cc,render_dns_queue.cc,render_dns_queue.h,render_dns_queue_unittest.cc}
1613+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1614+License: global BSD-style Chromium
1615+
1616+Files: chromium/src/chrome/renderer/spellchecker/*
1617+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1618+License: global BSD-style Chromium
1619+
1620+Files: chromium/src/chrome/renderer/spellchecker/*
1621+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1622+License: global BSD-style Chromium
1623+
1624+Files: chromium/src/chrome/renderer/translate/{page_translator.cc,page_translator.h,page_translator_unittest.cc,text_translator.h,text_translator_impl.cc,text_translator_impl.h}
1625+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1626+License: global BSD-style Chromium
1627+
1628+Files: chromium/src/chrome/test/{browser_with_test_window_test.cc,browser_with_test_window_test.h,injection_test_dll.h,test_notification_tracker.cc,test_notification_tracker.h}
1629+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1630+License: global BSD-style Chromium
1631+
1632+Files: chromium/src/chrome/test/{file_test_utils.cc,file_test_utils.h,test_browser_window.h}
1633+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1634+License: global BSD-style Chromium
1635+
1636+Files: chromium/src/chrome/test/{testing_profile.cc}
1637+Copyright: Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1638+License: global BSD-style Chromium
1639+
1640+Files: chromium/src/chrome/test/{chrome_process_util.cc,chrome_process_util.h,chrome_process_util_mac.cc,chrome_process_util_uitest.cc,menu_model_test.cc,menu_model_test.h,render_view_test.cc,render_view_test.h,test_location_bar.h,ui_test_utils.cc,ui_test_utils.h,ui_test_utils_linux.cc,ui_test_utils_mac.cc,ui_test_utils_win.cc,v8_unit_test.cc,v8_unit_test.h}
1641+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1642+License: global BSD-style Chromium
1643+
1644+Files: chromium/src/chrome/test/{testing_profile.h}
1645+Copyright: Copyright (c) 2009-2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1646+License: global BSD-style Chromium
1647+
1648+Files: chromium/src/chrome/test/{in_process_browser_test.cc,in_process_browser_test.h,testing_browser_process.h}
1649+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1650+License: global BSD-style Chromium
1651+
1652+Files: chromium/src/chrome/test/automated_ui_tests/{automated_ui_tests.h}
1653+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1654+License: global BSD-style Chromium
1655+
1656+Files: chromium/src/chrome/test/automated_ui_tests/{automated_ui_tests.cc}
1657+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1658+License: global BSD-style Chromium
1659+
1660+Files: chromium/src/chrome/test/automated_ui_tests/{automated_ui_test_base.cc,automated_ui_test_base.h,automated_ui_test_interactive_test.cc,automated_ui_test_test.cc}
1661+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1662+License: global BSD-style Chromium
1663+
1664+Files: chromium/src/chrome/test/automation/{autocomplete_edit_proxy.h,automation_handle_tracker.cc,automation_handle_tracker.h,automation_messages.h,automation_messages_internal.h,automation_proxy.cc,automation_proxy.h,automation_proxy_uitest.cc,browser_proxy.cc,browser_proxy.h,tab_proxy.cc,window_proxy.cc,window_proxy.h}
1665+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1666+License: global BSD-style Chromium
1667+
1668+Files: chromium/src/chrome/test/automation/{autocomplete_edit_proxy.cc}
1669+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1670+License: global BSD-style Chromium
1671+
1672+Files: chromium/src/chrome/test/automation/{automation_constants.h,automation_proxy_uitest.h,tab_proxy.h}
1673+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1674+License: global BSD-style Chromium
1675+
1676+Files: chromium/src/chrome/test/chrome_plugin/{test_chrome_plugin.cc,test_chrome_plugin.h}
1677+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1678+License: global BSD-style Chromium
1679+
1680+Files: chromium/src/chrome/test/data/dromaeo/{store.php}
1681+Copyright: UNKNOWN:
1682+License: *No copyright* UNKNOWN
1683+
1684+Files: chromium/src/chrome/test/data/dromaeo/{JSON.php}
1685+Copyright: Copyright: 2005 Michal Migurski:
1686+License: BSD (2 clause)
1687+
1688+Files: chromium/src/chrome/test/data/layout_tests/LayoutTests/http/tests/resources/{network-simulator.php,portabilityLayer.php,redirect.php,reset-temp-file.php,tripmine.php}
1689+Copyright: UNKNOWN:
1690+License: *No copyright* UNKNOWN
1691+
1692+Files: chromium/src/chrome/test/data/layout_tests/LayoutTests/http/tests/workers/resources/{subworker-encoded.php,worker-encoded.php,xhr-query-utf8.php,xhr-response.php}
1693+Copyright: UNKNOWN:
1694+License: *No copyright* UNKNOWN
1695+
1696+Files: chromium/src/chrome/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest/{null-auth.php}
1697+Copyright: UNKNOWN:
1698+License: *No copyright* UNKNOWN
1699+
1700+Files: chromium/src/chrome/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest/resources/{304.pl,access-control-basic-preflight-cache-invalidation.php,access-control-basic-preflight-cache-timeout.php,access-control-basic-preflight-cache.php,big-response.php,cross-origin-authorization.php,cross-origin-check-cookies.php,cross-origin-no-authorization.php,cross-origin-set-cookies.php,echo-auth.php,echo-host.php,empty-content-type.php,endlessxml.php,infinite-loop.php,no-custom-header.php,redirect.php}
1701+Copyright: UNKNOWN:
1702+License: *No copyright* UNKNOWN
1703+
1704+Files: chromium/src/chrome/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest/resources/basic-auth/{basic-auth.php}
1705+Copyright: UNKNOWN:
1706+License: *No copyright* UNKNOWN
1707+
1708+Files: chromium/src/chrome/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest/resources/logout/{resource.php}
1709+Copyright: UNKNOWN:
1710+License: *No copyright* UNKNOWN
1711+
1712+Files: chromium/src/chrome/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest/resources/re-login/{resource.php}
1713+Copyright: UNKNOWN:
1714+License: *No copyright* UNKNOWN
1715+
1716+Files: chromium/src/chrome/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest/workers/resources/{endless-response.php}
1717+Copyright: UNKNOWN:
1718+License: *No copyright* UNKNOWN
1719+
1720+Files: chromium/src/chrome/test/data/layout_tests/LayoutTests/websocket/tests/workers/resources/{simple_wsh.py}
1721+Copyright: Copyright: 2009 Google Inc. All rights reserved / HOLDERS AND CONTRIBUTORS:
1722+License: BSD (3 clause)
1723+
1724+Files: chromium/src/chrome/test/data/safe_browsing/{download_update.py}
1725+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1726+License: global BSD-style Chromium
1727+
1728+Files: chromium/src/chrome/test/data/translate/{reverse_text.py}
1729+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1730+License: global BSD-style Chromium
1731+
1732+Files: chromium/src/chrome/test/interactive_ui/{npapi_interactive_test.cc}
1733+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
1734+License: BSD (3 clause)
1735+
1736+Files: chromium/src/chrome/test/interactive_ui/{view_event_test_base.cc,view_event_test_base.h}
1737+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1738+License: global BSD-style Chromium
1739+
1740+Files: chromium/src/chrome/test/live_sync/{profile_sync_service_test_harness.cc}
1741+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1742+License: global BSD-style Chromium
1743+
1744+Files: chromium/src/chrome/test/live_sync/{bookmark_model_verifier.cc,bookmark_model_verifier.h,profile_sync_service_test_harness.h,single_client_live_bookmarks_sync_unittest.cc,two_client_live_bookmarks_sync_test.cc}
1745+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1746+License: global BSD-style Chromium
1747+
1748+Files: chromium/src/chrome/test/live_sync/{live_bookmarks_sync_test.cc,live_bookmarks_sync_test.h}
1749+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1750+License: global BSD-style Chromium
1751+
1752+Files: chromium/src/chrome/test/live_sync/{sync_integration_test.py}
1753+Copyright: Copyright 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1754+License: global BSD-style Chromium
1755+
1756+Files: chromium/src/chrome/test/memory_test/{memory_test.cc}
1757+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1758+License: global BSD-style Chromium
1759+
1760+Files: chromium/src/chrome/test/mini_installer_test/{chrome_mini_installer.cc,chrome_mini_installer.h,mini_installer_test_constants.cc,mini_installer_test_constants.h,mini_installer_test_util.cc,mini_installer_test_util.h,run_all_unittests.cc,test.cc}
1761+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1762+License: global BSD-style Chromium
1763+
1764+Files: chromium/src/chrome/test/nacl/{nacl_test.cc,nacl_test.h}
1765+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1766+License: global BSD-style Chromium
1767+
1768+Files: chromium/src/chrome/test/page_cycler/{page_cycler_test.cc}
1769+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1770+License: global BSD-style Chromium
1771+
1772+Files: chromium/src/chrome/test/perf/{perftests.cc,url_parse_perftest.cc}
1773+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1774+License: global BSD-style Chromium
1775+
1776+Files: chromium/src/chrome/test/plugin/{plugin_test.cpp}
1777+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008-2009, Google Inc:
1778+License: BSD (3 clause)
1779+
1780+Files: chromium/src/chrome/test/pyautolib/{pyauto.py,pyautolib.cc,pyautolib.h}
1781+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1782+License: global BSD-style Chromium
1783+
1784+Files: chromium/src/chrome/test/reliability/*
1785+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1786+License: global BSD-style Chromium
1787+
1788+Files: chromium/src/chrome/test/reliability/*
1789+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1790+License: global BSD-style Chromium
1791+
1792+Files: chromium/src/chrome/test/security_tests/{ipc_security_tests.cc,ipc_security_tests.h,security_tests.cc}
1793+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1794+License: global BSD-style Chromium
1795+
1796+Files: chromium/src/chrome/test/selenium/{selenium_test.cc}
1797+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1798+License: global BSD-style Chromium
1799+
1800+Files: chromium/src/chrome/test/startup/{feature_startup_test.cc,startup_test.cc}
1801+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1802+License: global BSD-style Chromium
1803+
1804+Files: chromium/src/chrome/test/sync/{test_http_bridge_factory.h}
1805+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1806+License: global BSD-style Chromium
1807+
1808+Files: chromium/src/chrome/test/sync/engine/{mock_gaia_authenticator.cc,mock_gaia_authenticator.h,mock_gaia_authenticator_unittest.cc,mock_server_connection.cc,mock_server_connection.h,test_directory_setter_upper.cc,test_directory_setter_upper.h,test_id_factory.h,test_syncable_utils.cc,test_syncable_utils.h}
1809+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1810+License: global BSD-style Chromium
1811+
1812+Files: chromium/src/chrome/test/tab_switching/{tab_switching_test.cc}
1813+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1814+License: global BSD-style Chromium
1815+
1816+Files: chromium/src/chrome/test/test_launcher/{in_proc_test_runner.cc,out_of_proc_test_runner.cc,run_all_unittests.cc,test_runner.cc,test_runner.h}
1817+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1818+License: global BSD-style Chromium
1819+
1820+Files: chromium/src/chrome/test/ui/{history_uitest.cc,layout_plugin_uitest.cc}
1821+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
1822+License: BSD (3 clause)
1823+
1824+Files: chromium/src/chrome/test/ui/{omnibox_uitest.cc,run_all_unittests.cc,sandbox_uitests.cc,ui_test.h,ui_test_suite.cc,ui_test_suite.h}
1825+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1826+License: global BSD-style Chromium
1827+
1828+Files: chromium/src/chrome/test/ui/{ui_test.cc}
1829+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1830+License: global BSD-style Chromium
1831+
1832+Files: chromium/src/chrome/test/ui/{dom_checker_uitest.cc,dromaeo_benchmark_uitest.cc,fast_shutdown_uitest.cc,javascript_test_util.cc,javascript_test_util.h,mouseleave_uitest.cc,npapi_test_helper.h,npapi_uitest.cc,sunspider_uitest.cc,ui_layout_test.cc,ui_layout_test.h,v8_benchmark_uitest.cc}
1833+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1834+License: global BSD-style Chromium
1835+
1836+Files: chromium/src/chrome/test/ui/{npapi_test_helper.cc}
1837+Copyright: Copyright 2008, Google Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1838+License: global BSD-style Chromium
1839+
1840+Files: chromium/src/chrome/test/unit/{chrome_test_suite.h,run_all_unittests.cc}
1841+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1842+License: global BSD-style Chromium
1843+
1844+Files: chromium/src/chrome/test/url_fetch_test/{url_fetch_test.cc}
1845+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1846+License: global BSD-style Chromium
1847+
1848+Files: chromium/src/chrome/third_party/jstemplate/{compile.py}
1849+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1850+License: global BSD-style Chromium
1851+
1852+Files: chromium/src/chrome/tools/*
1853+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1854+License: global BSD-style Chromium
1855+
1856+Files: chromium/src/chrome/tools/*
1857+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1858+License: global BSD-style Chromium
1859+
1860+Files: chromium/src/chrome/tools/automated_ui_test_tools/{auto_ui_test_input_generator.py}
1861+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1862+License: global BSD-style Chromium
1863+
1864+Files: chromium/src/chrome/tools/build/{appid.py,make_version_cc.py}
1865+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
1866+License: GENERATED FILE
1867+
1868+Files: chromium/src/chrome/tools/build/{apply_locales.py,repack_locales.py,version.py}
1869+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1870+License: global BSD-style Chromium
1871+
1872+Files: chromium/src/chrome/tools/build/linux/{sed.sh}
1873+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1874+License: global BSD-style Chromium
1875+
1876+Files: chromium/src/chrome/tools/build/mac/{keystone_install.sh,keystone_install_test.sh}
1877+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1878+License: global BSD-style Chromium
1879+
1880+Files: chromium/src/chrome/tools/build/win/*
1881+Copyright: Copyright: 2006-2008 The Chromium Authors. All rights reserved:
1882+License: GENERATED FILE
1883+
1884+Files: chromium/src/chrome/tools/build/win/*
1885+Copyright: Copyright: 2006-2009 The Chromium Authors. All rights reserved:
1886+License: GENERATED FILE
1887+
1888+Files: chromium/src/chrome/tools/build/win/*
1889+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1890+License: global BSD-style Chromium
1891+
1892+Files: chromium/src/chrome/tools/build/win/*
1893+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1894+License: global BSD-style Chromium
1895+
1896+Files: chromium/src/chrome/tools/convert_dict/{aff_reader.cc,aff_reader.h,convert_dict.cc,dic_reader.cc,dic_reader.h,hunspell_reader.cc,hunspell_reader.h}
1897+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1898+License: global BSD-style Chromium
1899+
1900+Files: chromium/src/chrome/tools/crash_service/{crash_service.cc,crash_service.h,main.cc}
1901+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1902+License: global BSD-style Chromium
1903+
1904+Files: chromium/src/chrome/tools/perf/flush_cache/{flush_cache.cc}
1905+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1906+License: global BSD-style Chromium
1907+
1908+Files: chromium/src/chrome/tools/profiles/{generate_profile.cc,thumbnail-inl.h}
1909+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1910+License: global BSD-style Chromium
1911+
1912+Files: chromium/src/chrome/tools/test/{generate_mime_tests.pl}
1913+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
1914+License: BSD (3 clause)
1915+
1916+Files: chromium/src/chrome/tools/test/{smoketests.py}
1917+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1918+License: global BSD-style Chromium
1919+
1920+Files: chromium/src/chrome/utility/{utility_main.cc,utility_thread.cc,utility_thread.h}
1921+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1922+License: global BSD-style Chromium
1923+
1924+Files: chromium/src/chrome/worker/*
1925+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1926+License: global BSD-style Chromium
1927+
1928+Files: chromium/src/chrome/worker/*
1929+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1930+License: global BSD-style Chromium
1931+
1932+Files: chromium/src/chrome_frame/*
1933+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc / Microsoft Corporation. All rights reserved:
1934+License: BSD (3 clause)
1935+
1936+Files: chromium/src/chrome_frame/*
1937+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
1938+License: BSD (3 clause)
1939+
1940+Files: chromium/src/chrome_frame/{script_security_manager.h}
1941+Copyright: Copyright: 1999:
1942+License: MPL (v1.1) GPL (unversioned/unknown version)
1943+
1944+Files: chromium/src/chrome_frame/{bho.cc,bho.h,chrome_active_document.cc,chrome_active_document.h,chrome_frame_activex.cc,chrome_frame_activex.h,chrome_frame_activex_base.h,chrome_frame_automation.cc,chrome_frame_automation.h,chrome_frame_delegate.cc,chrome_frame_delegate.h,chrome_frame_histograms.cc,chrome_frame_histograms.h,chrome_frame_npapi.cc,chrome_frame_npapi.h,chrome_frame_npapi_entrypoints.cc,chrome_frame_npapi_entrypoints.h,chrome_frame_npapi_unittest.cc,chrome_frame_plugin.h,chrome_frame_reporting.cc,chrome_frame_reporting.h,chrome_launcher.cc,chrome_launcher.h,chrome_launcher_main.cc,chrome_launcher_unittest.cc,chrome_protocol.cc,chrome_protocol.h,chrome_tab.cc,com_message_event.cc,com_message_event.h,com_type_info_holder.cc,com_type_info_holder.h,combine_libs.py,extra_system_apis.h,ff_30_privilege_check.cc,ff_privilege_check.h,find_dialog.cc,find_dialog.h,function_stub.h,html_private_window_impl.h,html_utils.cc,html_utils.h,html_window_impl.h,http_negotiate.cc,http_negotiate.h,ie8_types.h,iids.cc,np_browser_functions.cc,np_browser_functions.h,np_event_listener.cc,np_event_listener.h,np_proxy_service.cc,np_proxy_service.h,npapi_url_request.h,ns_associate_iid_win.h,ns_isupports_impl.h,ole_document_impl.h,plugin_url_request.cc,plugin_url_request.h,precompiled.cc,precompiled.h,protocol_sink_wrap.cc,protocol_sink_wrap.h,resource.h,scoped_ns_ptr_win.h,sync_msg_reply_dispatcher.cc,sync_msg_reply_dispatcher.h,test_utils.cc,test_utils.h,unittest_precompile.cc,unittest_precompile.h,urlmon_upload_data_stream.cc,urlmon_upload_data_stream.h,urlmon_upload_data_stream_unittest.cc,urlmon_url_request.cc,urlmon_url_request.h,utils.cc,utils.h,vtable_patch_manager.cc,vtable_patch_manager.h}
1945+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1946+License: global BSD-style Chromium
1947+
1948+Files: chromium/src/chrome_frame/crash_reporting/{crash_report.cc,crash_report.h,vectored_handler-impl.h,vectored_handler.h,vectored_handler_unittest.cc}
1949+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1950+License: global BSD-style Chromium
1951+
1952+Files: chromium/src/chrome_frame/test/{chrome_frame_test_utils.cc,chrome_frame_unittests.cc,chrome_frame_unittests.h,run_all_unittests.cc,test_server.cc,test_server.h,test_server_test.cc}
1953+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1954+License: global BSD-style Chromium
1955+
1956+Files: chromium/src/chrome_frame/test/{chrome_frame_automation_mock.cc,chrome_frame_automation_mock.h,html_util_unittests.cc,http_server.cc,http_server.h,util_unittests.cc}
1957+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1958+License: global BSD-style Chromium
1959+
1960+Files: chromium/src/chrome_frame/test/{chrome_frame_test_utils.h,com_message_event_unittest.cc,function_stub_unittest.cc,http_negotiate_unittest.cc}
1961+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1962+License: global BSD-style Chromium
1963+
1964+Files: chromium/src/chrome_frame/test/net/{dialog_watchdog.cc,dialog_watchdog.h,fake_external_tab.cc,fake_external_tab.h,process_singleton_subclass.cc,process_singleton_subclass.h,test_automation_provider.cc,test_automation_provider.h,test_automation_resource_message_filter.cc,test_automation_resource_message_filter.h}
1965+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1966+License: global BSD-style Chromium
1967+
1968+Files: chromium/src/chrome_frame/test/perf/*
1969+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1970+License: global BSD-style Chromium
1971+
1972+Files: chromium/src/chrome_frame/test/perf/*
1973+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1974+License: global BSD-style Chromium
1975+
1976+Files: chromium/src/chrome_frame/test/reliability/{page_load_test.cc,page_load_test.h,reliability_test_suite.h,run_all_unittests.cc}
1977+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1978+License: global BSD-style Chromium
1979+
1980+Files: chromium/src/chrome_frame/tools/test/page_cycler/{cf_cycler.py}
1981+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
1982+License: global BSD-style Chromium
1983+
1984+Files: chromium/src/depot_tools/{upload.py}
1985+Copyright: Copyright: 2007 Google Inc:
1986+License: Apache (v2.0)
1987+
1988+Files: chromium/src/depot_tools/{gclient.py}
1989+Copyright: Copyright: 2008 Google Inc. All Rights Reserved:
1990+License: Apache (v2.0)
1991+
1992+Files: chromium/src/depot_tools/{gclient_utils.py}
1993+Copyright: Copyright: 2009 Google Inc. All Rights Reserved:
1994+License: Apache (v2.0)
1995+
1996+Files: chromium/src/depot_tools/{cpplint.py}
1997+Copyright: Copyright: 2009 Google Inc. All rights reserved / HOLDERS AND CONTRIBUTORS:
1998+License: BSD (3 clause)
1999+
2000+Files: chromium/src/depot_tools/*
2001+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2002+License: global BSD-style Chromium
2003+
2004+Files: chromium/src/depot_tools/*
2005+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2006+License: global BSD-style Chromium
2007+
2008+Files: chromium/src/depot_tools/bootstrap/{gclient.sh}
2009+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2010+License: global BSD-style Chromium
2011+
2012+Files: chromium/src/depot_tools/tests/{gclient_scm_test.py,gclient_test.py}
2013+Copyright: Copyright: 2008-2009 Google Inc. All Rights Reserved:
2014+License: Apache (v2.0)
2015+
2016+Files: chromium/src/depot_tools/tests/*
2017+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2018+License: global BSD-style Chromium
2019+
2020+Files: chromium/src/depot_tools/tests/*
2021+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2022+License: global BSD-style Chromium
2023+
2024+Files: chromium/src/depot_tools/tests/pymox/{stubout_test.py}
2025+Copyright: UNKNOWN:
2026+License: *No copyright* Apache (v2.0)
2027+
2028+Files: chromium/src/depot_tools/tests/pymox/*
2029+Copyright: Copyright: 2008 Google Inc:
2030+License: Apache (v2.0)
2031+
2032+Files: chromium/src/depot_tools/tests/pymox/*
2033+Copyright: UNKNOWN:
2034+License: Apache (v2.0)
2035+
2036+Files: chromium/src/googleurl/{PRESUBMIT.py,PRESUBMIT_unittest.py}
2037+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
2038+License: BSD (3 clause)
2039+
2040+Files: chromium/src/googleurl/base/{basictypes.h}
2041+Copyright: Copyright: 2001 - 2003 Google Inc. All Rights Reserved:
2042+License: BSD (3 clause)
2043+
2044+Files: chromium/src/googleurl/base/{scoped_ptr.h}
2045+Copyright: Copyright: 2001, 2002 Peter Dimov / Greg Colvin and Beman Dawes 1998, 1999:
2046+License: BSD (3 clause)
2047+
2048+Files: chromium/src/googleurl/base/{logging.h}
2049+Copyright: Copyright: 2006 Google Inc. All Rights Reserved:
2050+License: BSD (3 clause)
2051+
2052+Files: chromium/src/googleurl/base/{string16.cc,string16.h}
2053+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2006-2008 The Chromium Authors. All rights reserved:
2054+License: BSD (3 clause)
2055+
2056+Files: chromium/src/googleurl/base/{logging.cc}
2057+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2007, Google Inc:
2058+License: BSD (3 clause)
2059+
2060+Files: chromium/src/googleurl/src/{gurl_unittest.cc}
2061+Copyright: Copyright: 2007 Google Inc. All Rights Reserved:
2062+License: BSD (3 clause)
2063+
2064+Files: chromium/src/googleurl/src/{url_test_utils.h}
2065+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2007 Google Inc:
2066+License: BSD (3 clause)
2067+
2068+Files: chromium/src/googleurl/src/{gurl.cc,gurl.h,gurl_test_main.cc,url_canon.h,url_canon_etc.cc,url_canon_fileurl.cc,url_canon_host.cc,url_canon_icu.cc,url_canon_icu.h,url_canon_internal.cc,url_canon_internal.h,url_canon_internal_file.h,url_canon_path.cc,url_canon_pathurl.cc,url_canon_query.cc,url_canon_relative.cc,url_canon_stdstring.h,url_canon_stdurl.cc,url_canon_unittest.cc,url_file.h,url_parse.h,url_parse_file.cc,url_parse_internal.h,url_parse_unittest.cc,url_util.cc,url_util.h}
2069+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2007, Google Inc:
2070+License: BSD (3 clause)
2071+
2072+Files: chromium/src/googleurl/src/{url_canon_ip.h,url_canon_mailtourl.cc,url_util_unittest.cc}
2073+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2074+License: BSD (3 clause)
2075+
2076+Files: chromium/src/googleurl/src/{url_canon_ip.cc}
2077+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2078+License: BSD (3 clause)
2079+
2080+Files: chromium/src/googleurl/src/{url_parse.cc}
2081+Copyright: Copyright: 1998:
2082+License: MPL (v1.1) GPL (unversioned/unknown version)
2083+
2084+Files: chromium/src/gpu/command_buffer/{build_gles2_cmd_buffer.py}
2085+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2086+License: global BSD-style Chromium
2087+
2088+Files: chromium/src/gpu/command_buffer/client/{gles2_c_lib_autogen.h,gles2_cmd_helper_autogen.h,gles2_implementation_autogen.h,gles2_implementation_gen.h}
2089+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
2090+License: GENERATED FILE
2091+
2092+Files: chromium/src/gpu/command_buffer/client/{cmd_buffer_helper.cc,cmd_buffer_helper.h,cmd_buffer_helper_test.cc,fenced_allocator.cc,fenced_allocator.h,fenced_allocator_test.cc,gles2_c_lib.cc,gles2_cmd_helper.cc,gles2_cmd_helper.h,gles2_demo.cc,gles2_demo_c.c,gles2_demo_c.h,gles2_demo_cc.cc,gles2_demo_cc.h,gles2_implementation.cc,gles2_implementation.h,gles2_lib.cc,gles2_lib.h,id_allocator.cc,id_allocator.h,id_allocator_test.cc}
2093+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2094+License: global BSD-style Chromium
2095+
2096+Files: chromium/src/gpu/command_buffer/common/{gles2_cmd_format_autogen.h,gles2_cmd_format_test_autogen.h,gles2_cmd_id_test_autogen.h,gles2_cmd_ids_autogen.h}
2097+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
2098+License: GENERATED FILE
2099+
2100+Files: chromium/src/gpu/command_buffer/common/{bitfield_helpers.h,bitfield_helpers_test.cc,buffer.h,cmd_buffer_common.cc,cmd_buffer_common.h,command_buffer.h,command_buffer_mock.h,constants.h,gles2_cmd_format.cc,gles2_cmd_format.h,gles2_cmd_format_test.cc,gles2_cmd_id_test.cc,gles2_cmd_ids.h,gles2_cmd_utils.cc,gles2_cmd_utils.h,logging.h,resource.cc,resource.h,types.h}
2101+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2102+License: global BSD-style Chromium
2103+
2104+Files: chromium/src/gpu/command_buffer/common/GLES2/{gl2.h,gl2platform.h,gl2types.h}
2105+Copyright: UNKNOWN:
2106+License: SGI Free Software B License (v2.0)
2107+
2108+Files: chromium/src/gpu/command_buffer/common/KHR/{khrplatform.h}
2109+Copyright: Copyright: 2008-2009 The Khronos Group Inc / HOLDERS BE LIABLE FOR ANY:
2110+License: UNKNOWN
2111+
2112+Files: chromium/src/gpu/command_buffer/service/{gles2_cmd_decoder_autogen.h,gles2_cmd_decoder_unittest_autogen.h,gles2_cmd_validation_autogen.h,gles2_cmd_validation_implementation_autogen.h}
2113+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
2114+License: GENERATED FILE
2115+
2116+Files: chromium/src/gpu/command_buffer/service/*
2117+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2118+License: global BSD-style Chromium
2119+
2120+Files: chromium/src/gpu/command_buffer/service/*
2121+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2122+License: global BSD-style Chromium
2123+
2124+Files: chromium/src/gpu/demos/app_framework/{application.cc,application.h,platform.h}
2125+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2126+License: global BSD-style Chromium
2127+
2128+Files: chromium/src/gpu/demos/gles2_book/{example.h}
2129+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2130+License: global BSD-style Chromium
2131+
2132+Files: chromium/src/gpu/demos/hello_triangle/{main.cc}
2133+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2134+License: global BSD-style Chromium
2135+
2136+Files: chromium/src/gpu/demos/mip_map_2d/{main.cc}
2137+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2138+License: global BSD-style Chromium
2139+
2140+Files: chromium/src/gpu/demos/simple_texture_2d/{main.cc}
2141+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2142+License: global BSD-style Chromium
2143+
2144+Files: chromium/src/gpu/demos/simple_texture_cubemap/{main.cc}
2145+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2146+License: global BSD-style Chromium
2147+
2148+Files: chromium/src/gpu/demos/simple_vertex_shader/{main.cc}
2149+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2150+License: global BSD-style Chromium
2151+
2152+Files: chromium/src/gpu/demos/stencil_test/{main.cc}
2153+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2154+License: global BSD-style Chromium
2155+
2156+Files: chromium/src/gpu/demos/texture_wrap/{main.cc}
2157+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2158+License: global BSD-style Chromium
2159+
2160+Files: chromium/src/gpu/gpu_plugin/{gpu_plugin.cc,gpu_plugin.h}
2161+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2162+License: global BSD-style Chromium
2163+
2164+Files: chromium/src/gpu/pgl/{command_buffer_pepper.cc,command_buffer_pepper.h,pgl.cc,pgl.h}
2165+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2166+License: global BSD-style Chromium
2167+
2168+Files: chromium/src/ipc/{file_descriptor_set_posix.cc,ipc_channel.h,ipc_channel_proxy.cc,ipc_channel_proxy.h,ipc_fuzzing_tests.cc,ipc_logging.cc,ipc_message.cc,ipc_message.h,ipc_message_macros.h,ipc_message_unittest.cc,ipc_sync_channel.cc,ipc_sync_channel.h,ipc_sync_channel_unittest.cc,ipc_sync_message.cc,ipc_sync_message_unittest.cc,ipc_sync_message_unittest.h,ipc_tests.h}
2169+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2170+License: global BSD-style Chromium
2171+
2172+Files: chromium/src/ipc/{file_descriptor_set_posix.h,file_descriptor_set_posix_unittest.cc,ipc_message_utils.h,ipc_switches.cc,ipc_switches.h,ipc_tests.cc}
2173+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2174+License: global BSD-style Chromium
2175+
2176+Files: chromium/src/ipc/{ipc_channel_posix.cc,ipc_channel_posix.h,ipc_channel_win.h}
2177+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2178+License: global BSD-style Chromium
2179+
2180+Files: chromium/src/ipc/{ipc_channel_handle.h,ipc_channel_win.cc,ipc_descriptors.h,ipc_logging.h,ipc_message_utils.cc,ipc_platform_file.h,ipc_send_fds_test.cc,ipc_sync_message.h,sync_socket_unittest.cc}
2181+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2182+License: global BSD-style Chromium
2183+
2184+Files: chromium/src/media/audio/{simple_sources.cc,simple_sources.h}
2185+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2186+License: global BSD-style Chromium
2187+
2188+Files: chromium/src/media/audio/{audio_output.h}
2189+Copyright: Copyright (c) 2008-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2190+License: global BSD-style Chromium
2191+
2192+Files: chromium/src/media/audio/{audio_util.cc,audio_util.h,audio_util_unittest.cc,fake_audio_output_stream.cc,fake_audio_output_stream.h,simple_sources_unittest.cc}
2193+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2194+License: global BSD-style Chromium
2195+
2196+Files: chromium/src/media/audio/linux/*
2197+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2198+License: global BSD-style Chromium
2199+
2200+Files: chromium/src/media/audio/linux/*
2201+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2202+License: global BSD-style Chromium
2203+
2204+Files: chromium/src/media/audio/mac/{audio_manager_mac.cc,audio_manager_mac.h,audio_output_mac.cc,audio_output_mac.h,audio_output_mac_unittest.cc}
2205+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2206+License: global BSD-style Chromium
2207+
2208+Files: chromium/src/media/audio/win/*
2209+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2210+License: global BSD-style Chromium
2211+
2212+Files: chromium/src/media/audio/win/*
2213+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2214+License: global BSD-style Chromium
2215+
2216+Files: chromium/src/media/base/{media_format.cc,media_format.h,run_all_unittests.cc}
2217+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2218+License: global BSD-style Chromium
2219+
2220+Files: chromium/src/media/base/{factory.h,filters.h,pipeline_impl_unittest.cc}
2221+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2222+License: global BSD-style Chromium
2223+
2224+Files: chromium/src/media/base/{djb2_unittest.cc}
2225+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2226+License: global BSD-style Chromium
2227+
2228+Files: chromium/src/media/base/{buffers.h,data_buffer.cc,data_buffer.h,data_buffer_unittest.cc,filter_host.h,pipeline_impl.cc,pipeline_impl.h}
2229+Copyright: Copyright (c) 2008-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2230+License: global BSD-style Chromium
2231+
2232+Files: chromium/src/media/base/{callback.h,mock_filter_host.h,mock_filters.cc,mock_filters.h,mock_reader.h,pts_heap.h}
2233+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2234+License: global BSD-style Chromium
2235+
2236+Files: chromium/src/media/base/{buffer_queue.cc,buffer_queue.h,buffer_queue_unittest.cc,buffers.cc,clock.h,clock_impl.cc,clock_impl.h,clock_impl_unittest.cc,djb2.cc,djb2.h,limits.h,media.h,media_posix.cc,media_switches.cc,media_switches.h,media_win.cc,mock_ffmpeg.cc,mock_ffmpeg.h,mock_task.h,pipeline.h,pts_heap_unittest.cc,seekable_buffer.cc,seekable_buffer.h,seekable_buffer_unittest.cc,synchronizer.cc,synchronizer.h,video_frame_impl.cc,video_frame_impl.h,video_frame_impl_unittest.cc,yuv_convert.cc,yuv_convert.h,yuv_convert_unittest.cc,yuv_row.h,yuv_row_linux.cc,yuv_row_mac.cc,yuv_row_win.cc}
2237+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2238+License: global BSD-style Chromium
2239+
2240+Files: chromium/src/media/ffmpeg/{ffmpeg_util.cc,ffmpeg_util.h}
2241+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2242+License: global BSD-style Chromium
2243+
2244+Files: chromium/src/media/filters/{decoder_base.h,ffmpeg_audio_decoder.cc,ffmpeg_audio_decoder.h,ffmpeg_video_decode_engine.cc,ffmpeg_video_decode_engine.h,ffmpeg_video_decoder.cc,ffmpeg_video_decoder.h,video_decode_engine.h,video_renderer_base.cc,video_renderer_base.h}
2245+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2246+License: global BSD-style Chromium
2247+
2248+Files: chromium/src/media/filters/{audio_renderer_algorithm_base.cc,audio_renderer_algorithm_base.h,audio_renderer_algorithm_default.cc,audio_renderer_algorithm_default.h,audio_renderer_algorithm_ola.cc,audio_renderer_algorithm_ola.h,audio_renderer_algorithm_ola_unittest.cc,audio_renderer_base.cc,audio_renderer_base.h,audio_renderer_base_unittest.cc,audio_renderer_impl.cc,audio_renderer_impl.h,bitstream_converter.cc,bitstream_converter.h,bitstream_converter_unittest.cc,ffmpeg_common.cc,ffmpeg_common.h,ffmpeg_demuxer.cc,ffmpeg_demuxer.h,ffmpeg_demuxer_unittest.cc,ffmpeg_glue.cc,ffmpeg_glue.h,ffmpeg_glue_unittest.cc,ffmpeg_interfaces.cc,ffmpeg_interfaces.h,ffmpeg_video_decode_engine_unittest.cc,file_data_source.cc,file_data_source.h,file_data_source_unittest.cc,null_audio_renderer.cc,null_audio_renderer.h,omx_video_decoder.cc,omx_video_decoder.h,video_decoder_impl.cc,video_decoder_impl.h,video_decoder_impl_unittest.cc,video_renderer_base_unittest.cc}
2249+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2250+License: global BSD-style Chromium
2251+
2252+Files: chromium/src/media/filters/{omx_video_decode_engine.cc,omx_video_decode_engine.h}
2253+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2254+License: global BSD-style Chromium
2255+
2256+Files: chromium/src/media/omx/{input_buffer.cc,input_buffer.h}
2257+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2258+License: global BSD-style Chromium
2259+
2260+Files: chromium/src/media/omx/{run_all_unittests.cc}
2261+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2262+License: global BSD-style Chromium
2263+
2264+Files: chromium/src/media/omx/{omx_unittest.cc}
2265+Copyright: Copyright (c) 2009-2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2266+License: global BSD-style Chromium
2267+
2268+Files: chromium/src/media/omx/{omx_codec.cc,omx_codec.h,omx_test.cc}
2269+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2270+License: global BSD-style Chromium
2271+
2272+Files: chromium/src/media/tools/media_bench/{file_protocol.cc,file_protocol.h,media_bench.cc}
2273+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2274+License: global BSD-style Chromium
2275+
2276+Files: chromium/src/media/tools/player_wtl/*
2277+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2278+License: global BSD-style Chromium
2279+
2280+Files: chromium/src/media/tools/player_wtl/*
2281+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2282+License: global BSD-style Chromium
2283+
2284+Files: chromium/src/media/tools/player_x11/*
2285+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2286+License: global BSD-style Chromium
2287+
2288+Files: chromium/src/media/tools/player_x11/*
2289+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2290+License: global BSD-style Chromium
2291+
2292+Files: chromium/src/media/tools/qt_faststart/{qt_faststart.c}
2293+Copyright: UNKNOWN:
2294+License: Public domain
2295+
2296+Files: chromium/src/media/tools/wav_ola_test/{wav_ola_test.cc}
2297+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
2298+License: global BSD-style Chromium
2299+
2300+Files: chromium/src/native_client/{PRESUBMIT.py}
2301+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2302+License: BSD (3 clause)
2303+
2304+Files: chromium/src/native_client/build/{cook_tarball.py}
2305+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2306+License: BSD (3 clause)
2307+
2308+Files: chromium/src/native_client/common/{nacl_util.py,standalone.cc,standalone.h,worker.h}
2309+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2310+License: BSD (3 clause)
2311+
2312+Files: chromium/src/native_client/common/console/{console.cc,console.h,console_c.cc,console_c.h,console_color.h,console_xterm.cc,console_xterm.h,font2c.py,term.h,termcap.c}
2313+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2314+License: BSD (3 clause)
2315+
2316+Files: chromium/src/native_client/documentation/{check.sh}
2317+Copyright: UNKNOWN:
2318+License: BSD (3 clause)
2319+
2320+Files: chromium/src/native_client/site_scons/{http_download.py,site_init.py,sync_tgz.py,usage_log.py}
2321+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2322+License: BSD (3 clause)
2323+
2324+Files: chromium/src/native_client/site_scons/site_tools/{wix.py}
2325+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008 Google Inc:
2326+License: BSD (3 clause)
2327+
2328+Files: chromium/src/native_client/site_scons/site_tools/{atlmfc_vc80.py,code_coverage.py,code_signing.py,collada_dom.py,command_output.py,component_bits.py,component_builders.py,component_setup.py,component_targets.py,component_targets_msvs.py,component_targets_xml.py,defer.py,directx_9_0_c.py,directx_9_18_944_0_partial.py,distcc.py,environment_tools.py,gather_inputs.py,naclsdk.py,publish.py,replace_strings.py,replicate.py,sdl.py,seven_zip.py,target_debug.py,target_optimized.py,target_platform_linux.py,target_platform_mac.py,target_platform_windows.py,visual_studio_solution.py,windows_hard_link.py}
2329+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2330+License: BSD (3 clause)
2331+
2332+Files: chromium/src/native_client/site_scons/site_tools/{uuid.py}
2333+Copyright: UNKNOWN:
2334+License: BSD (3 clause)
2335+
2336+Files: chromium/src/native_client/site_scons/site_tools/{concat_source.py}
2337+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2338+License: BSD (3 clause) GENERATED FILE
2339+
2340+Files: chromium/src/native_client/src/include/{checked_cast.h,checked_cast_debug.h}
2341+Copyright: Copyright: 2010 The Native Client Authors. All rights reserved:
2342+License: BSD (3 clause)
2343+
2344+Files: chromium/src/native_client/src/include/{atomic_ops.h,elf.h,elf32.h,elf64.h,elf_constants.h,nacl_base.h,nacl_elf.h,nacl_platform.h,portability.h,portability_io.h,portability_string.h}
2345+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2346+License: BSD (3 clause)
2347+
2348+Files: chromium/src/native_client/src/include/{nacl_macros.h,portability_process.h}
2349+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2350+License: BSD (3 clause)
2351+
2352+Files: chromium/src/native_client/src/include/linux/arm/{atomic_ops.h}
2353+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2354+License: BSD (3 clause)
2355+
2356+Files: chromium/src/native_client/src/include/linux/x86/{atomic_ops.h}
2357+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2358+License: BSD (3 clause)
2359+
2360+Files: chromium/src/native_client/src/include/nacl/{nacl_inttypes.h}
2361+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2362+License: BSD (3 clause)
2363+
2364+Files: chromium/src/native_client/src/include/osx/{atomic_ops_osx.h}
2365+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2366+License: BSD (3 clause)
2367+
2368+Files: chromium/src/native_client/src/include/win/{atomic_ops_win32.h,port_win.h}
2369+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2370+License: BSD (3 clause)
2371+
2372+Files: chromium/src/native_client/src/shared/imc/*
2373+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2374+License: BSD (3 clause)
2375+
2376+Files: chromium/src/native_client/src/shared/imc/*
2377+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2378+License: BSD (3 clause)
2379+
2380+Files: chromium/src/native_client/src/shared/imc/linux/{nacl_imc.cc}
2381+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2382+License: BSD (3 clause)
2383+
2384+Files: chromium/src/native_client/src/shared/imc/nacl/{nacl_imc.cc}
2385+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2386+License: BSD (3 clause)
2387+
2388+Files: chromium/src/native_client/src/shared/imc/osx/{nacl_imc.cc}
2389+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2390+License: BSD (3 clause)
2391+
2392+Files: chromium/src/native_client/src/shared/imc/win/{nacl_imc.cc,nacl_shm.cc}
2393+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2394+License: BSD (3 clause)
2395+
2396+Files: chromium/src/native_client/src/shared/npruntime/*
2397+Copyright: Copyright: 2008 The Native Client Authors. All rights reserved:
2398+License: BSD (3 clause)
2399+
2400+Files: chromium/src/native_client/src/shared/npruntime/*
2401+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
2402+License: BSD (3 clause)
2403+
2404+Files: chromium/src/native_client/src/shared/platform/{platform_tests.cc}
2405+Copyright: Copyright: 2010 The Native Client Authors. All rights reserved:
2406+License: BSD (3 clause)
2407+
2408+Files: chromium/src/native_client/src/shared/platform/{nacl_check.c,nacl_check.h,nacl_global_secure_random.c,nacl_global_secure_random.h,nacl_host_desc.h,nacl_host_desc_common.c,nacl_host_dir.h,nacl_interruptible_condvar.c,nacl_interruptible_condvar.h,nacl_interruptible_mutex.c,nacl_interruptible_mutex.h,nacl_log.c,nacl_log.h,nacl_secure_random.h,nacl_secure_random_base.h,nacl_secure_random_common.c,nacl_semaphore.h,nacl_sync.cc,nacl_sync.h,nacl_sync_checked.c,nacl_sync_checked.h,nacl_threads.h,nacl_time.h,nacl_timestamp.h,time.cc,time.h}
2409+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2410+License: BSD (3 clause)
2411+
2412+Files: chromium/src/native_client/src/shared/platform/{nacl_log_intern.h}
2413+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2414+License: BSD (3 clause)
2415+
2416+Files: chromium/src/native_client/src/shared/platform/linux/{nacl_time.c}
2417+Copyright: Copyright: 2008 The Native Client Authors. All rights reserved:
2418+License: BSD (3 clause)
2419+
2420+Files: chromium/src/native_client/src/shared/platform/linux/{nacl_time_types.h}
2421+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
2422+License: BSD (3 clause)
2423+
2424+Files: chromium/src/native_client/src/shared/platform/linux/{condition_variable.cc,condition_variable.h,lock.cc,lock.h,nacl_host_desc.c,nacl_host_desc_types.h,nacl_host_dir.c,nacl_host_dir_types.h,nacl_secure_random.c,nacl_secure_random_types.h,nacl_semaphore.c,nacl_semaphore.h,nacl_threads.c,nacl_threads_types.h,nacl_timestamp.c,time_linux.cc}
2425+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2426+License: BSD (3 clause)
2427+
2428+Files: chromium/src/native_client/src/shared/platform/osx/{nacl_host_dir.c,nacl_host_dir_types.h,nacl_semaphore.c,nacl_semaphore.h,strnlen_osx.c}
2429+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2430+License: BSD (3 clause)
2431+
2432+Files: chromium/src/native_client/src/shared/platform/win/{nacl_time.c}
2433+Copyright: Copyright: 2008 The Native Client Authors. All rights reserved:
2434+License: BSD (3 clause)
2435+
2436+Files: chromium/src/native_client/src/shared/platform/win/{nacl_time_types.h}
2437+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
2438+License: BSD (3 clause)
2439+
2440+Files: chromium/src/native_client/src/shared/platform/win/{condition_variable.cc,condition_variable.h,condition_variable_events.h,lock.cc,lock.h,lock_impl.h,lock_impl_win.cc,nacl_host_desc.c,nacl_host_desc_types.h,nacl_host_dir.c,nacl_host_dir_types.h,nacl_secure_random.c,nacl_secure_random_types.h,nacl_semaphore.c,nacl_semaphore.h,nacl_threads.c,nacl_threads_types.h,nacl_timestamp.c,port_win.c,time_win.cc,xlate_system_error.c,xlate_system_error.h}
2441+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2442+License: BSD (3 clause)
2443+
2444+Files: chromium/src/native_client/src/shared/platform/win/{port_win_test.c}
2445+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2446+License: BSD (3 clause)
2447+
2448+Files: chromium/src/native_client/src/shared/srpc/{accept_loop.c,imc_buffer.c,invoke.c,main.c,nacl_srpc.c,nacl_srpc.h,nacl_srpc_internal.h,rpc_serialize.c,rpc_server_loop.c,rpc_service.c,rpc_universal.c,utility.c}
2449+Copyright: Copyright: 2008 The Native Client Authors. All rights reserved:
2450+License: BSD (3 clause)
2451+
2452+Files: chromium/src/native_client/src/shared/utils/{debugging.h,flags.c,flags.h,formatting.c,formatting.h,types.h}
2453+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2454+License: BSD (3 clause)
2455+
2456+Files: chromium/src/native_client/src/third_party/libxt/{autogen.sh}
2457+Copyright: UNKNOWN:
2458+License: BSD (3 clause)
2459+
2460+Files: chromium/src/native_client/src/third_party/libxt/{ltmain.sh}
2461+Copyright: Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005:
2462+License: GPL (v2 or later) GENERATED FILE
2463+
2464+Files: chromium/src/native_client/src/third_party/libxt/include/X11/{VarargsI.h}
2465+Copyright: Copyright: 1985, 1986, 1987, 1988, 1989, 1998 The Open Group:
2466+License: BSD (3 clause)
2467+
2468+Files: chromium/src/native_client/src/third_party/libxt/include/X11/{InitialI.h,Intrinsic.h,IntrinsicI.h,IntrinsicP.h,ObjectP.h,ResourceI.h,SelectionI.h,ShellP.h,Xtos.h}
2469+Copyright: Copyright: 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts / 1987, 1988, 1994, 1998 The Open Group:
2470+License: BSD (3 clause)
2471+
2472+Files: chromium/src/native_client/src/third_party/libxt/include/X11/{CallbackI.h,Composite.h,CompositeP.h,ConstrainP.h,Constraint.h,ConvertI.h,Core.h,CoreP.h,EventI.h,Object.h,RectObj.h,RectObjP.h,TranslateI.h,Vendor.h,VendorP.h}
2473+Copyright: Copyright: 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts / 1987, 1988, 1998 The Open Group:
2474+License: BSD (3 clause)
2475+
2476+Files: chromium/src/native_client/src/third_party/libxt/include/X11/{PassivGraI.h}
2477+Copyright: Copyright: 1987, 1988, 1989, 1998 The Open Group / 1988 by Hewlett-Packard Company / 1987, 1988, 1989 by Digital Equipment Corporation, Maynard:
2478+License: BSD (3 clause)
2479+
2480+Files: chromium/src/native_client/src/third_party/libxt/include/X11/{HookObjI.h}
2481+Copyright: Copyright: 1994, 1998 The Open Group:
2482+License: BSD (3 clause)
2483+
2484+Files: chromium/src/native_client/src/third_party/libxt/include/X11/{ThreadsI.h}
2485+Copyright: Copyright: 1994, 1998 The Open Group / no- / 1993 by Sun Microsystems, Inc. Mountain View, CA:
2486+License: BSD (3 clause)
2487+
2488+Files: chromium/src/native_client/src/third_party/libxt/include/X11/{CreateI.h,ShellI.h}
2489+Copyright: UNKNOWN:
2490+License: BSD (3 clause)
2491+
2492+Files: chromium/src/native_client/src/third_party/libxt/include/X11/{ResConfigP.h}
2493+Copyright: Copyright: 1987, 1988, 1998 The Open Group / International Business Machines Corp. 1992,1997:
2494+License: MIT/X11 (BSD like)
2495+
2496+Files: chromium/src/native_client/src/third_party/libxt/src/{VarCreate.c}
2497+Copyright: Copyright: 1885, 1986, 1987, 1988, 1989, 1994, 1998 The Open Group / 1993 by Sun Microsystems, Inc. Mountain View, CA:
2498+License: BSD (3 clause)
2499+
2500+Files: chromium/src/native_client/src/third_party/libxt/src/{Varargs.c}
2501+Copyright: Copyright: 1985, 1986, 1987, 1988, 1989, 1994, 1998 The Open Group:
2502+License: BSD (3 clause)
2503+
2504+Files: chromium/src/native_client/src/third_party/libxt/src/{Functions.c}
2505+Copyright: Copyright: 1985, 1986, 1987, 1988, 1989, 1994, 1998 The Open Group / 1993 by Sun Microsystems, Inc. Mountain View, CA:
2506+License: BSD (3 clause)
2507+
2508+Files: chromium/src/native_client/src/third_party/libxt/src/{Popup.c}
2509+Copyright: Copyright: 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts / 1987, 1988, 1994, 1998 The Open Group:
2510+License: BSD (3 clause)
2511+
2512+Files: chromium/src/native_client/src/third_party/libxt/src/{Converters.c,Create.c,Destroy.c,Geometry.c,Initialize.c,Intrinsic.c,Manage.c,Object.c,Resources.c,Selection.c,SetValues.c,Shell.c,TMkey.c,TMstate.c}
2513+Copyright: Copyright: 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts / 1987, 1988, 1994, 1998 The Open Group / 1993 by Sun Microsystems, Inc. Mountain View, CA:
2514+License: BSD (3 clause)
2515+
2516+Files: chromium/src/native_client/src/third_party/libxt/src/{ArgList.c,PopupCB.c,RectObj.c,Vendor.c}
2517+Copyright: Copyright: 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts / 1987, 1988, 1998 The Open Group:
2518+License: BSD (3 clause)
2519+
2520+Files: chromium/src/native_client/src/third_party/libxt/src/{NextEvent.c}
2521+Copyright: Copyright: 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts / 1993 by Sun Microsystems, Inc. Mountain View, CA / 1987, 1988, 1994, 1998, 2001 The Open Group:
2522+License: BSD (3 clause)
2523+
2524+Files: chromium/src/native_client/src/third_party/libxt/src/{EventUtil.c}
2525+Copyright: Copyright: 1987, 1988, 1989 by Digital Equipment Corporation, Maynard, Massachusetts / 1987, 1988, 1989, 1998 The Open Group / 1988 by Hewlett-Packard Company / 1993 by Sun Microsystems, Inc. Mountain View, CA:
2526+License: BSD (3 clause)
2527+
2528+Files: chromium/src/native_client/src/third_party/libxt/src/{Keyboard.c}
2529+Copyright: Copyright: 1987, 1988, 1989 by Digital Equipment Corporation, Maynard, Massachusetts / 1987, 1988, 1994, 1998 The Open Group / 1988 by Hewlett-Packard Company / 1993 by Sun Microsystems, Inc. Mountain View, CA:
2530+License: BSD (3 clause)
2531+
2532+Files: chromium/src/native_client/src/third_party/libxt/src/{PassivGrab.c}
2533+Copyright: Copyright: 1987, 1988, 1989, 1990, 1994, 1998 The Open Group / 1987, 1988, 1989,1990 by Digital Equipment Corporation, Maynard, Massachusetts / 1988 by Hewlett-Packard Company / 1993 by Sun Microsystems, Inc. Mountain View, CA:
2534+License: BSD (3 clause)
2535+
2536+Files: chromium/src/native_client/src/third_party/libxt/src/{Pointer.c}
2537+Copyright: Copyright: 1987, 1988, 1989, 1998 The Open Group / 1988 by Hewlett-Packard Company / 1987, 1988, 1989 by Digital Equipment Corporation, Maynard:
2538+License: BSD (3 clause)
2539+
2540+Files: chromium/src/native_client/src/third_party/libxt/src/{GCManager.c}
2541+Copyright: Copyright: 1987, 1988, 1990 by Digital Equipment Corporation, Maynard, Massachusetts / 1987, 1988, 1990, 1994, 1998 The Open Group / 1993 by Sun Microsystems, Inc. Mountain View, CA:
2542+License: BSD (3 clause)
2543+
2544+Files: chromium/src/native_client/src/third_party/libxt/src/{Constraint.c}
2545+Copyright: Copyright: 1987, 1988, 1998 The Open Group / 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts / 1993 by Sun Microsystems, Inc. Mountain View CA:
2546+License: BSD (3 clause)
2547+
2548+Files: chromium/src/native_client/src/third_party/libxt/src/{ActionHook.c,Alloc.c,Callback.c,ClickTime.c,Composite.c,Convert.c,Core.c,Display.c,Error.c,Event.c,GetActKey.c,GetResList.c,GetValues.c,SetSens.c,TMaction.c,TMgrab.c,TMparse.c,TMprint.c}
2549+Copyright: Copyright: 1987, 1988, 1998 The Open Group / 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts / 1993 by Sun Microsystems, Inc. Mountain View, CA:
2550+License: BSD (3 clause)
2551+
2552+Files: chromium/src/native_client/src/third_party/libxt/src/{sharedlib.c}
2553+Copyright: Copyright: 1989, 1994, 1998 The Open Group:
2554+License: BSD (3 clause)
2555+
2556+Files: chromium/src/native_client/src/third_party/libxt/src/{VarGet.c}
2557+Copyright: Copyright: 1993 by Sun Microsystems, Inc. Mountain View, CA / 1985, 1986, 1987, 1988, 1989, 1998 The Open Group:
2558+License: BSD (3 clause)
2559+
2560+Files: chromium/src/native_client/src/third_party/libxt/src/{HookObj.c,Hooks.c}
2561+Copyright: Copyright: 1994, 1998 The Open Group:
2562+License: BSD (3 clause)
2563+
2564+Files: chromium/src/native_client/src/third_party/libxt/src/{Threads.c}
2565+Copyright: Copyright: 1994, 1998 The Open Group / no- / 1993 by Sun Microsystems, Inc. Mountain View, CA:
2566+License: BSD (3 clause)
2567+
2568+Files: chromium/src/native_client/src/third_party/libxt/src/*
2569+Copyright: Copyright: 1987, 1988, 1998 The Open Group / International Business Machines Corp. 1992,1997:
2570+License: MIT/X11 (BSD like)
2571+
2572+Files: chromium/src/native_client/src/third_party/libxt/src/*
2573+Copyright: Copyright: 1989, 1994, 1998 The Open Group / holder / 1993 Sun Microsystems, Inc. All rights reserved / HOLDER OR:
2574+License: MIT/X11 (BSD like)
2575+
2576+Files: chromium/src/native_client/src/third_party/libxt/util/{makestrs.c}
2577+Copyright: Copyright: 1991, 1998 The Open Group:
2578+License: BSD (3 clause)
2579+
2580+Files: chromium/src/native_client/src/third_party/npapi/files/include/{npupp.h}
2581+Copyright: Copyright: 1998:
2582+License: MPL (v1.1) GPL (unversioned/unknown version)
2583+
2584+Files: chromium/src/native_client/src/third_party_mod/npapi_plugin/{np_entry.cc,npn_gate.cc}
2585+Copyright: Copyright: 1998:
2586+License: GPL (unversioned/unknown version)
2587+
2588+Files: chromium/src/native_client/src/trusted/base/*
2589+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
2590+License: BSD (3 clause)
2591+
2592+Files: chromium/src/native_client/src/trusted/base/*
2593+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2594+License: BSD (3 clause)
2595+
2596+Files: chromium/src/native_client/src/trusted/desc/{nacl_desc_base.h,nacl_desc_conn_cap.c,nrd_all_modules.c}
2597+Copyright: Copyright: 2008 The Native Client Authors. All rights reserved:
2598+License: BSD (3 clause)
2599+
2600+Files: chromium/src/native_client/src/trusted/desc/{nacl_desc_sync_socket.c,nacl_desc_sync_socket.h,nacl_desc_wrapper.cc,nacl_desc_wrapper.h}
2601+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
2602+License: BSD (3 clause)
2603+
2604+Files: chromium/src/native_client/src/trusted/desc/{nacl_desc_base.c,nacl_desc_cond.c,nacl_desc_cond.h,nacl_desc_conn_cap.h,nacl_desc_dir.c,nacl_desc_dir.h,nacl_desc_effector.h,nacl_desc_effector_cleanup.c,nacl_desc_effector_cleanup.h,nacl_desc_effector_ldr.c,nacl_desc_effector_ldr.h,nacl_desc_imc.c,nacl_desc_imc.h,nacl_desc_imc_bound_desc.c,nacl_desc_imc_bound_desc.h,nacl_desc_imc_shm.c,nacl_desc_imc_shm.h,nacl_desc_io.c,nacl_desc_io.h,nacl_desc_mutex.c,nacl_desc_mutex.h,nacl_desc_semaphore.c,nacl_desc_semaphore.h,nrd_all_modules.h,nrd_xfer.c,nrd_xfer.h,nrd_xfer_effector.c,nrd_xfer_effector.h,nrd_xfer_test.c}
2605+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2606+License: BSD (3 clause)
2607+
2608+Files: chromium/src/native_client/src/trusted/desc/{nacl_desc_invalid.c,nacl_desc_invalid.h}
2609+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2610+License: BSD (3 clause)
2611+
2612+Files: chromium/src/native_client/src/trusted/desc/{nrd_xfer_test.sh}
2613+Copyright: UNKNOWN:
2614+License: BSD (3 clause)
2615+
2616+Files: chromium/src/native_client/src/trusted/desc/linux/{nacl_desc.c,nacl_desc_sysv_shm.c,nacl_desc_sysv_shm.h}
2617+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2618+License: BSD (3 clause)
2619+
2620+Files: chromium/src/native_client/src/trusted/desc/win/{nacl_desc.c}
2621+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2622+License: BSD (3 clause)
2623+
2624+Files: chromium/src/native_client/src/trusted/gio/{gio.c,gio.h,gio_mem.c,gio_mem_snapshot.c,gio_mem_test.cc,gprintf.c}
2625+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2626+License: BSD (3 clause)
2627+
2628+Files: chromium/src/native_client/src/trusted/handle_pass/*
2629+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
2630+License: BSD (3 clause)
2631+
2632+Files: chromium/src/native_client/src/trusted/handle_pass/*
2633+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2634+License: BSD (3 clause)
2635+
2636+Files: chromium/src/native_client/src/trusted/nonnacl_util/*
2637+Copyright: Copyright: 2006-2009 The Chromium Authors. All rights reserved:
2638+License: BSD (3 clause)
2639+
2640+Files: chromium/src/native_client/src/trusted/nonnacl_util/*
2641+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2642+License: BSD (3 clause)
2643+
2644+Files: chromium/src/native_client/src/trusted/nonnacl_util/linux/{get_plugin_dirname.cc,sel_ldr_launcher_linux.cc}
2645+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2646+License: BSD (3 clause)
2647+
2648+Files: chromium/src/native_client/src/trusted/nonnacl_util/win/{sel_ldr_launcher_win.cc}
2649+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2650+License: BSD (3 clause)
2651+
2652+Files: chromium/src/native_client/src/trusted/platform_qualify/*
2653+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2654+License: BSD (3 clause)
2655+
2656+Files: chromium/src/native_client/src/trusted/platform_qualify/*
2657+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2658+License: BSD (3 clause)
2659+
2660+Files: chromium/src/native_client/src/trusted/platform_qualify/linux/*
2661+Copyright: Copyright: 2008 The Native Client Authors. All rights reserved:
2662+License: BSD (3 clause)
2663+
2664+Files: chromium/src/native_client/src/trusted/platform_qualify/linux/*
2665+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
2666+License: BSD (3 clause)
2667+
2668+Files: chromium/src/native_client/src/trusted/platform_qualify/osx/{nacl_os_qualify.c}
2669+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2670+License: BSD (3 clause)
2671+
2672+Files: chromium/src/native_client/src/trusted/platform_qualify/win/{nacl_os_qualify.c}
2673+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2674+License: BSD (3 clause)
2675+
2676+Files: chromium/src/native_client/src/trusted/plugin/*
2677+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2678+License: BSD (3 clause)
2679+
2680+Files: chromium/src/native_client/src/trusted/plugin/*
2681+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2682+License: BSD (3 clause)
2683+
2684+Files: chromium/src/native_client/src/trusted/plugin/srpc/{video_chrome.cc}
2685+Copyright: Copyright: 2008 The Native Client Authors. All rights reserved:
2686+License: BSD (3 clause)
2687+
2688+Files: chromium/src/native_client/src/trusted/plugin/srpc/{browser_interface.cc,browser_interface.h,closure.cc,closure.h,connected_socket.cc,connected_socket.h,desc_based_handle.cc,desc_based_handle.h,method_map.cc,method_map.h,multimedia_socket.cc,multimedia_socket.h,npapi_native.cc,npapi_native.h,npnacl-unittest.cc,plugin.cc,plugin.h,portable_handle.cc,portable_handle.h,ret_array.cc,ret_array.h,scriptable_handle.h,service_runtime_interface.cc,service_runtime_interface.h,shared_memory.cc,shared_memory.h,socket_address.cc,socket_address.h,srpc.cc,srpc.h,srpc_client.cc,srpc_client.h,srt_socket.cc,srt_socket.h,utility.h,video.cc,video.h}
2689+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2690+License: BSD (3 clause)
2691+
2692+Files: chromium/src/native_client/src/trusted/plugin/srpc/{utility.cc}
2693+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2694+License: BSD (3 clause)
2695+
2696+Files: chromium/src/native_client/src/trusted/sandbox/linux/{nacl_registers.cc,nacl_registers.h,nacl_sandbox.cc,nacl_sandbox.h,nacl_sandbox_main.cc,nacl_syscall_checker.cc,nacl_syscall_checker.h,nacl_syscall_def.cc,nacl_syscall_def.h,nacl_syscall_filter.cc,nacl_syscall_filter.h}
2697+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2698+License: BSD (3 clause)
2699+
2700+Files: chromium/src/native_client/src/trusted/service_runtime/{nacl_memory_object.c,nacl_memory_object.h,sel_addrspace.c,sel_ldr-inl.h,sel_ldr.c,sel_ldr.h,sel_ldr_standard.c,sel_main.c,sel_mem.c}
2701+Copyright: Copyright: 2008 The Native Client Authors. All rights reserved:
2702+License: BSD (3 clause)
2703+
2704+Files: chromium/src/native_client/src/trusted/service_runtime/{export_header.py}
2705+Copyright: Copyright: 2008, 2009, The Native Client Authors. All rights reserved:
2706+License: BSD (3 clause)
2707+
2708+Files: chromium/src/native_client/src/trusted/service_runtime/{elf_util.c,elf_util.h,nacl_text.c,nacl_text.h,sel_util-inl.h}
2709+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
2710+License: BSD (3 clause)
2711+
2712+Files: chromium/src/native_client/src/trusted/service_runtime/{dyn_array.c,dyn_array.h,dyn_array_test.c,expiration.c,expiration.h,expiration_test.c,internal_errno.h,main.c,main2.c,mmap_test.c,modify_ldt.c,modify_ldt2.c,nacl_all_modules.h,nacl_app.h,nacl_app_thread.c,nacl_app_thread.h,nacl_assert.h,nacl_audio_video.h,nacl_bottom_half.c,nacl_bottom_half.h,nacl_closure.c,nacl_closure.h,nacl_config.h,nacl_error_code.h,nacl_globals.c,nacl_globals.h,nacl_ldt_unittest.c,nacl_switch_to_app.h,nacl_sync_cond_test.c,nacl_sync_queue.c,nacl_sync_queue.h,nacl_sync_unittest.cc,nacl_syscall_asm_symbols.h,nacl_syscall_common.c,nacl_syscall_common.h,nacl_syscall_handlers.h,nacl_syscall_handlers_gen2.py,nacl_syscall_hook.c,sel_addrspace.h,sel_ldr_test.cc,sel_ldr_thread_death_test.c,sel_mem.h,sel_mem_test.cc,sel_memory.h,sel_memory_unittest.cc,sel_universal.c,sel_util.c,sel_util.h,springboard.h,tramp.h,unittest_main.cc,web_worker_stub.c,web_worker_stub.h}
2713+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2714+License: BSD (3 clause)
2715+
2716+Files: chromium/src/native_client/src/trusted/service_runtime/{env_cleanser.c,env_cleanser.h,env_cleanser_test.c,env_cleanser_test.h,nacl_all_modules.c,nacl_check_test.c,nacl_thread_nice.h,nacl_tls.h,sel_ldr-inl.c,sel_rt.h,sel_util-inl.c}
2717+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2718+License: BSD (3 clause)
2719+
2720+Files: chromium/src/native_client/src/trusted/service_runtime/arch/{sel_ldr_arch.h}
2721+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2722+License: BSD (3 clause)
2723+
2724+Files: chromium/src/native_client/src/trusted/service_runtime/arch/arm/*
2725+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2726+License: BSD (3 clause)
2727+
2728+Files: chromium/src/native_client/src/trusted/service_runtime/arch/arm/*
2729+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2730+License: BSD (3 clause)
2731+
2732+Files: chromium/src/native_client/src/trusted/service_runtime/arch/x86/{sel_validate_image.c}
2733+Copyright: Copyright: 2008 The Native Client Authors. All rights reserved:
2734+License: BSD (3 clause)
2735+
2736+Files: chromium/src/native_client/src/trusted/service_runtime/arch/x86/{nacl_app.c,nacl_ldt_x86.c,nacl_ldt_x86.h,nacl_switch_to_app.c,sel_rt.c}
2737+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2738+License: BSD (3 clause)
2739+
2740+Files: chromium/src/native_client/src/trusted/service_runtime/arch/x86/{nacl_tls.c,sel_addrspace_x86.c,sel_ldr_x86.c,sel_ldr_x86.h,sel_rt.h}
2741+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2742+License: BSD (3 clause)
2743+
2744+Files: chromium/src/native_client/src/trusted/service_runtime/arch/x86/{output-wrapper.sh}
2745+Copyright: UNKNOWN:
2746+License: BSD (3 clause)
2747+
2748+Files: chromium/src/native_client/src/trusted/service_runtime/arch/x86_32/{sel_rt_32.c,springboard_gen.c,tramp_gen.c}
2749+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2750+License: BSD (3 clause)
2751+
2752+Files: chromium/src/native_client/src/trusted/service_runtime/arch/x86_64/*
2753+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2754+License: BSD (3 clause)
2755+
2756+Files: chromium/src/native_client/src/trusted/service_runtime/arch/x86_64/*
2757+Copyright: UNKNOWN:
2758+License: BSD (3 clause)
2759+
2760+Files: chromium/src/native_client/src/trusted/service_runtime/benchmark/{getpid.c}
2761+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2762+License: BSD (3 clause)
2763+
2764+Files: chromium/src/native_client/src/trusted/service_runtime/fs/{fs.h,obj_proxy.c,obj_proxy.h,obj_proxy_test.c,xdr.c,xdr.h}
2765+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2766+License: BSD (3 clause)
2767+
2768+Files: chromium/src/native_client/src/trusted/service_runtime/generic_container/{container.c,container.h}
2769+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2770+License: BSD (3 clause)
2771+
2772+Files: chromium/src/native_client/src/trusted/service_runtime/include/bits/*
2773+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2774+License: BSD (3 clause)
2775+
2776+Files: chromium/src/native_client/src/trusted/service_runtime/include/bits/*
2777+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2778+License: BSD (3 clause)
2779+
2780+Files: chromium/src/native_client/src/trusted/service_runtime/include/machine/{_types.h}
2781+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2782+License: BSD (3 clause)
2783+
2784+Files: chromium/src/native_client/src/trusted/service_runtime/include/sys/{time.h}
2785+Copyright: Copyright: 2008 The Native Client Authors. All rights reserved:
2786+License: BSD (3 clause)
2787+
2788+Files: chromium/src/native_client/src/trusted/service_runtime/include/sys/{audio_video.h,dirent.h,errno.h,fcntl.h,mman.h,nacl_imc_api.h,nacl_syscalls.h,stat.h,unistd.h}
2789+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2790+License: BSD (3 clause)
2791+
2792+Files: chromium/src/native_client/src/trusted/service_runtime/include/sys/{nacl_nice.h}
2793+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2794+License: BSD (3 clause)
2795+
2796+Files: chromium/src/native_client/src/trusted/service_runtime/linux/*
2797+Copyright: Copyright: 2008 The Native Client Authors. All rights reserved:
2798+License: BSD (3 clause)
2799+
2800+Files: chromium/src/native_client/src/trusted/service_runtime/linux/*
2801+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2802+License: BSD (3 clause)
2803+
2804+Files: chromium/src/native_client/src/trusted/service_runtime/linux/arm/{sel_segments.c}
2805+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2806+License: BSD (3 clause)
2807+
2808+Files: chromium/src/native_client/src/trusted/service_runtime/linux/x86/{nacl_ldt.c,sel_segments.c}
2809+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2810+License: BSD (3 clause)
2811+
2812+Files: chromium/src/native_client/src/trusted/service_runtime/osx/*
2813+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2814+License: BSD (3 clause)
2815+
2816+Files: chromium/src/native_client/src/trusted/service_runtime/osx/*
2817+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2818+License: BSD (3 clause)
2819+
2820+Files: chromium/src/native_client/src/trusted/service_runtime/win/{nacl_syscall_impl.c,nacl_syscall_inl.h}
2821+Copyright: Copyright: 2008 The Native Client Authors. All rights reserved:
2822+License: BSD (3 clause)
2823+
2824+Files: chromium/src/native_client/src/trusted/service_runtime/win/{mman.h,sel_memory.c,sel_segments.c}
2825+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2826+License: BSD (3 clause)
2827+
2828+Files: chromium/src/native_client/src/trusted/service_runtime/win/{nacl_ldt.c,nacl_thread_nice.c}
2829+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2830+License: BSD (3 clause)
2831+
2832+Files: chromium/src/native_client/src/trusted/validator_arm/{arm_branches.c,arm_branches.h,arm_categorize.c,arm_categorize.h,arm_categorize_main.cc,arm_compress.cc,arm_compress.h,arm_coprocessor.c,arm_coprocessor.h,arm_data_ops.c,arm_data_ops.h,arm_exceptions.c,arm_exceptions.h,arm_extended_ops.c,arm_extended_ops.h,arm_inst_modeling.c,arm_inst_modeling.h,arm_insts.c,arm_insts.h,arm_insts_rt.c,arm_insts_rt.h,arm_load_stores.c,arm_load_stores.h,arm_misc_ops.c,arm_misc_ops.h,arm_mulops.c,arm_mulops.h,arm_parallel.c,arm_parallel.h,arm_swap_insts.c,arm_swap_insts.h,arm_validate.cc,arm_validate.h,branch_patterns.cc,branch_patterns.h,debugging.h,decoder_generator.cc,decoder_generator.h,masks.cc,masks.h,ncdecode.cc,ncdecode.h,ncdis.cc,ncval.cc,ncvalidate.cc,ncvalidate.h,nop_patterns.cc,nop_patterns.h,register_set_use.c,register_set_use.h,segment_parser.cc,segment_parser.h,sequestered_reg_patterns.cc,sequestered_reg_patterns.h,stack_adjust_patterns.cc,stack_adjust_patterns.h,store_patterns.cc,store_patterns.h,string_split.cc,string_split.h,types_cpp.h,validator_patterns.cc,validator_patterns.h}
2833+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2834+License: BSD (3 clause)
2835+
2836+Files: chromium/src/native_client/src/trusted/validator_arm/{arm_cat_compress.h,arm_categorize_memman.cc,arm_categorize_memman.h,generated_decoder.h}
2837+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2838+License: BSD (3 clause) GENERATED FILE
2839+
2840+Files: chromium/src/native_client/src/trusted/validator_arm/v2/{address_set.cc,address_set.h,address_set_test.cc,decode.h,dgen_core.py,dgen_input.py,dgen_opt.py,generate_decoder.py,inst_classes.cc,inst_classes.h,model-inl.h,model.h,ncval.cc,ncvalidate.cc,ncvalidate.h,optimize-table.py,validation-report.py,validator.cc,validator.h}
2841+Copyright: Copyright: 2009, Google Inc / 2009 The Native Client Authors. All rights reserved:
2842+License: BSD (3 clause)
2843+
2844+Files: chromium/src/native_client/src/trusted/validator_arm/v2/{dgen_dump.py,dgen_output.py}
2845+Copyright: Copyright: 2009, Google Inc / 2009 The Native Client Authors. All rights reserved:
2846+License: GENERATED FILE
2847+
2848+Files: chromium/src/native_client/src/trusted/validator_x86/{nc_jumps.c,nc_jumps.h,nc_protect_base.c,ncdecode_onebyte.c,ncdecode_sse.c,ncval_iter.c}
2849+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
2850+License: BSD (3 clause)
2851+
2852+Files: chromium/src/native_client/src/trusted/validator_x86/{discmp.py,nacl_cpuid.c,nacl_cpuid.h,nacl_cpuid_test.c,nc_opcode_histogram.c,ncdecode.c,ncdecode.h,ncdecode_table.c,ncdecode_tests.c,ncdecode_tests.h,ncdis.c,ncdis_util.c,ncfileutil.c,ncfileutil.h,ncval.c,ncval_tests.c,ncvalidate.c,ncvalidate.h,ncvalidate_internaltypes.h}
2853+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2854+License: BSD (3 clause)
2855+
2856+Files: chromium/src/native_client/src/trusted/validator_x86/{enum_gen.py,nc_cpu_checks.c,nc_cpu_checks.h,nc_illegal.c,nc_illegal.h,nc_inst_iter.c,nc_inst_iter.h,nc_inst_state.c,nc_inst_state.h,nc_inst_state_internal.h,nc_inst_trans.c,nc_inst_trans.h,nc_opcode_histogram.h,nc_protect_base.h,nc_read_segment.c,nc_read_segment.h,nc_segment.c,nc_segment.h,nc_store_protect.c,nc_store_protect.h,ncdecode_DC.c,ncdecode_OF.c,ncdecode_tablegen.c,ncdecode_tablegen.h,ncdis_util.h,ncop_exps.c,ncop_exps.h,ncopcode_desc.c,ncopcode_desc.h,ncval_driver.c,ncval_driver.h,ncval_iter_test.c,ncvalidate_iter.c,ncvalidate_iter.h,ncvalidate_iter_internal.h,ncvalidate_utils.c,ncvalidate_utils.h,types_memory_model.h}
2857+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2858+License: BSD (3 clause)
2859+
2860+Files: chromium/src/native_client/src/untrusted/av/{nacl_av.c,nacl_av.h,nacl_av_priv.h}
2861+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2862+License: BSD (3 clause)
2863+
2864+Files: chromium/src/native_client/src/untrusted/nacl/{nanosleep.c,sleep.c}
2865+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
2866+License: BSD (3 clause)
2867+
2868+Files: chromium/src/native_client/src/untrusted/nacl/{_execve.c,_exit.c,clock.c,close.c,dup.c,execve.c,fork.c,fstat.c,getdents.c,getpid.c,gettimeofday.c,imc_accept.c,imc_connect.c,imc_makeboundsock.c,imc_mem_obj_create.c,imc_recvmsg.c,imc_sendmsg.c,imc_socketpair.c,isatty.c,kill.c,link.c,lock.c,lseek.c,mmap.c,munmap.c,null.c,open.c,pipe.c,read.c,sbrk.c,sched_yield.c,srpc_get_fd.c,stacktrace.c,stat.c,sysconf.c,times.c,tls.c,tls.h,unlink.c,wait.c,write.c}
2869+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2870+License: BSD (3 clause)
2871+
2872+Files: chromium/src/native_client/src/untrusted/nacl/{av_wait.c,srpc_init.c,srpc_wait.c,syscall_bindings_trampoline.h}
2873+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2874+License: BSD (3 clause)
2875+
2876+Files: chromium/src/native_client/src/untrusted/pthread/{nc_condvar.c,nc_condvar.h,nc_hash.c,nc_hash.h,nc_mutex.c,nc_semaphore.c,nc_thread.c,pthread.h,pthread_types.h,semaphore.h}
2877+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2878+License: BSD (3 clause)
2879+
2880+Files: chromium/src/native_client/src/untrusted/unimpl/{access.c,chdir.c,chmod.c,chown.c,endpwent.c,fcntl.c,getegid.c,geteuid.c,getppid.c,getpwnam.c,getwd.c,ioctl.c,mkdir.c,raise.c,rmdir.c,select.c,umask.c,utime.c}
2881+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2882+License: BSD (3 clause)
2883+
2884+Files: chromium/src/native_client/tests/app_lib/{app_lib_test.c}
2885+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2886+License: BSD (3 clause)
2887+
2888+Files: chromium/src/native_client/tests/autoloader/{autoloader_default.c}
2889+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2890+License: BSD (3 clause)
2891+
2892+Files: chromium/src/native_client/tests/bundle_size/{bundle_size.c}
2893+Copyright: UNKNOWN:
2894+License: BSD (3 clause)
2895+
2896+Files: chromium/src/native_client/tests/cdom_perf/{ccdomtable.cc,cdomshm.c,cdomshm.h,cdomtable.c}
2897+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2898+License: BSD (3 clause)
2899+
2900+Files: chromium/src/native_client/tests/contest_issues/{issue52.c,issue55.c,issue63.c}
2901+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2902+License: BSD (3 clause)
2903+
2904+Files: chromium/src/native_client/tests/createthreads/{createthreads.cc,createthreads.py}
2905+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2906+License: BSD (3 clause)
2907+
2908+Files: chromium/src/native_client/tests/drawing/{drawing.cc}
2909+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2910+License: BSD (3 clause)
2911+
2912+Files: chromium/src/native_client/tests/earth/{earth.cc,run.py}
2913+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2914+License: BSD (3 clause)
2915+
2916+Files: chromium/src/native_client/tests/eviltests/{linux_overlapjmp.c,macos_overlapjmp.c,trustme.c}
2917+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2918+License: BSD (3 clause)
2919+
2920+Files: chromium/src/native_client/tests/fib/{fib_array.c,fib_scalar.c,test_fib_array.sh,test_fib_scalar.sh}
2921+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2922+License: BSD (3 clause)
2923+
2924+Files: chromium/src/native_client/tests/file/{file.cc,run.py}
2925+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2926+License: BSD (3 clause)
2927+
2928+Files: chromium/src/native_client/tests/hello_world/*
2929+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2930+License: BSD (3 clause)
2931+
2932+Files: chromium/src/native_client/tests/hello_world/*
2933+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2934+License: BSD (3 clause)
2935+
2936+Files: chromium/src/native_client/tests/imc_shm_mmap/{imc_shm_mmap_test.c}
2937+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2938+License: BSD (3 clause)
2939+
2940+Files: chromium/src/native_client/tests/life/{life.cc,run.py}
2941+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2942+License: BSD (3 clause)
2943+
2944+Files: chromium/src/native_client/tests/lua/{lua_module.cc}
2945+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2946+License: BSD (3 clause)
2947+
2948+Files: chromium/src/native_client/tests/mandel/{mandel.c,mandel_tiled.c}
2949+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2950+License: BSD (3 clause)
2951+
2952+Files: chromium/src/native_client/tests/mandel_nav/{mandel_nav.c}
2953+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2954+License: BSD (3 clause)
2955+
2956+Files: chromium/src/native_client/tests/mmap/{mmap_test.cc,run.py}
2957+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2958+License: BSD (3 clause)
2959+
2960+Files: chromium/src/native_client/tests/nanosleep/{nanosleep_test.c}
2961+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
2962+License: BSD (3 clause)
2963+
2964+Files: chromium/src/native_client/tests/native_worker/{mandel_worker.c,native_worker.c}
2965+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2966+License: BSD (3 clause)
2967+
2968+Files: chromium/src/native_client/tests/noop/*
2969+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2970+License: BSD (3 clause)
2971+
2972+Files: chromium/src/native_client/tests/noop/*
2973+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
2974+License: BSD (3 clause)
2975+
2976+Files: chromium/src/native_client/tests/npapi_bridge/{base_object.cc,base_object.h,npp_gate.cc,plugin.cc,plugin.h}
2977+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2978+License: BSD (3 clause)
2979+
2980+Files: chromium/src/native_client/tests/npapi_hw/{npapi_hw.c,npp_gate.c}
2981+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2982+License: BSD (3 clause)
2983+
2984+Files: chromium/src/native_client/tests/npapi_pi/{base_object.cc,base_object.h,npp_gate.cc,plugin.cc,plugin.h}
2985+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2986+License: BSD (3 clause)
2987+
2988+Files: chromium/src/native_client/tests/nrd_xfer/*
2989+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2990+License: BSD (3 clause)
2991+
2992+Files: chromium/src/native_client/tests/nrd_xfer/*
2993+Copyright: UNKNOWN:
2994+License: BSD (3 clause)
2995+
2996+Files: chromium/src/native_client/tests/nthread_nice/{nthread_nice.c,run.py}
2997+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
2998+License: BSD (3 clause)
2999+
3000+Files: chromium/src/native_client/tests/null/{null.c}
3001+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3002+License: BSD (3 clause)
3003+
3004+Files: chromium/src/native_client/tests/nullptr/{nullptr.c}
3005+Copyright: UNKNOWN:
3006+License: BSD (3 clause)
3007+
3008+Files: chromium/src/native_client/tests/pepper_plugin/{event_handler.h,plugin_object.h}
3009+Copyright: Copyright: 2006, 2007 Apple Inc. All rights reserved:
3010+License: BSD (2 clause)
3011+
3012+Files: chromium/src/native_client/tests/pepper_plugin/{event_handler.cc,plugin_object.cc}
3013+Copyright: Copyright: 2006, 2007, 2008 Apple Inc. All rights reserved:
3014+License: BSD (2 clause)
3015+
3016+Files: chromium/src/native_client/tests/pepper_plugin/{test_object.cc,test_object.h}
3017+Copyright: Copyright: 2007 Apple Inc. All rights reserved:
3018+License: BSD (2 clause)
3019+
3020+Files: chromium/src/native_client/tests/pepper_plugin/{main.cc}
3021+Copyright: UNKNOWN:
3022+License: BSD (3 clause)
3023+
3024+Files: chromium/src/native_client/tests/photo/{fastmath.h,nacl_file.cc,photo.cc,photo_tool.sh,surface.cc,surface.h}
3025+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3026+License: BSD (3 clause)
3027+
3028+Files: chromium/src/native_client/tests/pthread_bless/{run.py}
3029+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3030+License: BSD (3 clause)
3031+
3032+Files: chromium/src/native_client/tests/python_version/{python_version.py}
3033+Copyright: UNKNOWN:
3034+License: BSD (3 clause)
3035+
3036+Files: chromium/src/native_client/tests/quake/{nacl_file.c}
3037+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3038+License: BSD (3 clause)
3039+
3040+Files: chromium/src/native_client/tests/ruby/{main.c}
3041+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
3042+License: BSD (3 clause)
3043+
3044+Files: chromium/src/native_client/tests/ruby/appendix/{config.h,signal_missing.c}
3045+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
3046+License: BSD (3 clause)
3047+
3048+Files: chromium/src/native_client/tests/srpc/*
3049+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3050+License: BSD (3 clause)
3051+
3052+Files: chromium/src/native_client/tests/srpc/*
3053+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
3054+License: BSD (3 clause)
3055+
3056+Files: chromium/src/native_client/tests/srpc_hw/{srpc_hw.c}
3057+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3058+License: BSD (3 clause)
3059+
3060+Files: chromium/src/native_client/tests/srpc_without_pthread/{basic_srpc.c}
3061+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
3062+License: BSD (3 clause)
3063+
3064+Files: chromium/src/native_client/tests/sysbasic/{sysbasic.c,tls_test.c}
3065+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
3066+License: BSD (3 clause)
3067+
3068+Files: chromium/src/native_client/tests/syscalls/{run.py,syscalls.cc}
3069+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3070+License: BSD (3 clause)
3071+
3072+Files: chromium/src/native_client/tests/threads/*
3073+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3074+License: BSD (3 clause)
3075+
3076+Files: chromium/src/native_client/tests/threads/*
3077+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
3078+License: BSD (3 clause)
3079+
3080+Files: chromium/src/native_client/tests/time/{gettimeofday_test.c}
3081+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
3082+License: BSD (3 clause)
3083+
3084+Files: chromium/src/native_client/tests/tone/{run.py,tone.cc}
3085+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3086+License: BSD (3 clause)
3087+
3088+Files: chromium/src/native_client/tests/toolchain/{dummy.c}
3089+Copyright: Copyright: 2009, Google Inc / 2009 The Native Client Authors. All rights reserved:
3090+License: BSD (3 clause)
3091+
3092+Files: chromium/src/native_client/tests/tools/{sigpipe_tool_test.c}
3093+Copyright: UNKNOWN:
3094+License: BSD (3 clause)
3095+
3096+Files: chromium/src/native_client/tests/tparty/{tparty.sh}
3097+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3098+License: BSD (3 clause)
3099+
3100+Files: chromium/src/native_client/tests/vim/{vim_tool.sh}
3101+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3102+License: BSD (3 clause)
3103+
3104+Files: chromium/src/native_client/tests/voronoi/{run.py,voronoi.cc}
3105+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3106+License: BSD (3 clause)
3107+
3108+Files: chromium/src/native_client/tests/xaos/{xaos_tool.sh}
3109+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3110+License: BSD (3 clause)
3111+
3112+Files: chromium/src/native_client/tools/{selenium_tester.py}
3113+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
3114+License: BSD (3 clause)
3115+
3116+Files: chromium/src/native_client/tools/{command_tester.py,download.sh,firefoxinstall.py,httpd.py,redirector.c,set_abi_version.py,syscall_stats.py,sysinfo.py,test_lib.py,test_timing.py,update_death_test_files.py}
3117+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3118+License: BSD (3 clause)
3119+
3120+Files: chromium/src/native_client/tools/{code_hygiene.py,file_cmp_test.py,linux.x86_64.prep.sh,win_as.py}
3121+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
3122+License: BSD (3 clause)
3123+
3124+Files: chromium/src/native_client/tools/{generate_bad_nexes.py}
3125+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3126+License: BSD (3 clause) GENERATED FILE
3127+
3128+Files: chromium/src/native_client/tools/llvm/{build-libgcc.sh,llvm-fake.py,toolchain-creator.sh,trusted-toolchain-creator.sh}
3129+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
3130+License: BSD (3 clause)
3131+
3132+Files: chromium/src/native_client/tools/llvm/{qemu_tool.sh}
3133+Copyright: Copyright: 2009, Google Inc / 2009 The Native Client Authors. All rights reserved:
3134+License: BSD (3 clause)
3135+
3136+Files: chromium/src/native_client/tools/llvm/{build-install-linux-crosstool.sh,configure-build-install.sh,setup_arm_newlib.sh,setup_arm_trusted_toolchain.sh,setup_arm_untrusted_toolchain.sh}
3137+Copyright: UNKNOWN:
3138+License: BSD (3 clause)
3139+
3140+Files: chromium/src/native_client/tools/llvm/arm_examples/{hello.c}
3141+Copyright: UNKNOWN:
3142+License: BSD (3 clause)
3143+
3144+Files: chromium/src/native_client/tools/tests/{test_toolchain.py}
3145+Copyright: Copyright: 2009 The Native Client Authors. All rights reserved:
3146+License: BSD (3 clause)
3147+
3148+Files: chromium/src/native_client/tools/tests/{libs_present_test.cc,npp_gate.c}
3149+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3150+License: BSD (3 clause)
3151+
3152+Files: chromium/src/native_client/tools/tests/{libs_present_stub.cc,libs_present_stub.h}
3153+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
3154+License: BSD (3 clause)
3155+
3156+Files: chromium/src/native_client/tools/tests/ldscripts/{elf_nacl.xs}
3157+Copyright: UNKNOWN:
3158+License: BSD (3 clause)
3159+
3160+Files: chromium/src/native_client/tools/xray/{hashtable.c,stringpool.c,symtable.c,xray.c,xray.h,xray_priv.h}
3161+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3162+License: BSD (3 clause)
3163+
3164+Files: chromium/src/net/base/{run_all_unittests.cc}
3165+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3166+License: BSD (3 clause)
3167+
3168+Files: chromium/src/net/base/{effective_tld_names.cc}
3169+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
3170+License: GENERATED FILE
3171+
3172+Files: chromium/src/net/base/*
3173+Copyright: Copyright: 2003 / 2006-2008 The Chromium Authors. All rights reserved:
3174+License: MPL (v1.1) GPL (unversioned/unknown version)
3175+
3176+Files: chromium/src/net/base/*
3177+Copyright: Copyright: 2006:
3178+License: MPL (v1.1) GPL (unversioned/unknown version)
3179+
3180+Files: chromium/src/net/base/{address_list.cc,address_list.h,auth.h,cert_status_flags.h,completion_callback.h,cookie_monster.h,cookie_monster_perftest.cc,cookie_monster_unittest.cc,cookie_policy.cc,cookie_policy.h,cookie_policy_unittest.cc,data_url.cc,data_url.h,data_url_unittest.cc,directory_lister_unittest.cc,ev_root_ca_metadata.cc,ev_root_ca_metadata.h,filter.cc,filter.h,filter_unittest.cc,gzip_filter.cc,gzip_filter.h,gzip_filter_unittest.cc,gzip_header.cc,gzip_header.h,host_resolver.cc,host_resolver.h,host_resolver_impl.cc,host_resolver_impl.h,host_resolver_impl_unittest.cc,listen_socket.cc,listen_socket.h,listen_socket_unittest.cc,listen_socket_unittest.h,load_flags.h,load_states.h,mime_sniffer.cc,mime_sniffer.h,mime_sniffer_unittest.cc,mime_util_unittest.cc,net_errors.cc,net_errors.h,net_module.cc,net_module.h,net_util_posix.cc,net_util_win.cc,platform_mime_util.h,platform_mime_util_linux.cc,platform_mime_util_mac.cc,platform_mime_util_win.cc,registry_controlled_domain_unittest.cc,sdch_filter.cc,sdch_filter.h,sdch_filter_unittest.cc,sdch_manager.cc,sdch_manager.h,ssl_config_service_win.cc,ssl_config_service_win_unittest.cc,ssl_info.h,telnet_server.cc,telnet_server.h,telnet_server_unittest.cc,test_certificate_data.h,test_completion_callback.h,test_completion_callback_unittest.cc,upload_data.cc,upload_data.h,upload_data_stream.cc,upload_data_stream.h,winsock_init.cc,winsock_init.h,x509_certificate.cc,x509_certificate.h,x509_certificate_mac.cc,x509_certificate_nss.cc,x509_certificate_unittest.cc,x509_certificate_win.cc}
3181+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3182+License: global BSD-style Chromium
3183+
3184+Files: chromium/src/net/base/{cookie_options.h,cookie_store.h,filter_unittest.h,mime_util.cc,mime_util.h,net_error_list.h,ssl_config_service.h,ssl_config_service_win.h}
3185+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3186+License: global BSD-style Chromium
3187+
3188+Files: chromium/src/net/base/{file_stream.h,file_stream_posix.cc,file_stream_unittest.cc,file_stream_win.cc}
3189+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3190+License: global BSD-style Chromium
3191+
3192+Files: chromium/src/net/base/{cert_verifier.cc,nss_memio.c,nss_memio.h,scoped_cert_chain_context.h}
3193+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3194+License: global BSD-style Chromium
3195+
3196+Files: chromium/src/net/base/{cert_verifier.h}
3197+Copyright: Copyright (c) 2008-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3198+License: global BSD-style Chromium
3199+
3200+Files: chromium/src/net/base/{address_family.h,address_list_unittest.cc,bandwidth_metrics.h,cache_type.h,cert_database.h,cert_database_mac.cc,cert_database_nss.cc,cert_database_win.cc,cert_status_flags.cc,cert_verify_result.h,connection_type_histograms.cc,connection_type_histograms.h,directory_lister.cc,directory_lister.h,dns_util.cc,dns_util.h,dns_util_unittest.cc,effective_tld_names_unittest1.cc,effective_tld_names_unittest2.cc,escape.cc,escape.h,escape_unittest.cc,fixed_host_resolver.cc,fixed_host_resolver.h,host_cache.cc,host_cache.h,host_cache_unittest.cc,https_prober.cc,https_prober.h,io_buffer.cc,io_buffer.h,keygen_handler.h,keygen_handler_mac.cc,keygen_handler_nss.cc,keygen_handler_win.cc,load_log.cc,load_log.h,load_log_event_type_list.h,load_log_unittest.cc,load_log_unittest.h,load_log_util.cc,load_log_util.h,load_log_util_unittest.cc,mock_network_change_notifier.h,net_test_constants.h,net_test_suite.h,net_util.cc,net_util.h,net_util_unittest.cc,network_change_notifier.cc,network_change_notifier.h,network_change_notifier_helper.cc,network_change_notifier_helper.h,network_change_notifier_linux.cc,network_change_notifier_linux.h,network_change_notifier_mac.cc,network_change_notifier_mac.h,network_change_notifier_win.cc,network_change_notifier_win.h,request_priority.h,ssl_cert_request_info.h,ssl_client_auth_cache.cc,ssl_client_auth_cache.h,ssl_client_auth_cache_unittest.cc,ssl_config_service.cc,ssl_config_service_defaults.h,ssl_config_service_mac.cc,ssl_config_service_mac.h,ssl_config_service_mac_unittest.cc,sys_addrinfo.h,transport_security_state.cc,transport_security_state.h,transport_security_state_unittest.cc}
3201+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3202+License: global BSD-style Chromium
3203+
3204+Files: chromium/src/net/base/{host_resolver_proc.cc,host_resolver_proc.h,mock_host_resolver.cc,mock_host_resolver.h}
3205+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3206+License: global BSD-style Chromium
3207+
3208+Files: chromium/src/net/disk_cache/{hash.cc}
3209+Copyright: UNKNOWN:
3210+License: Paul Hsieh's Public Domain Option
3211+
3212+Files: chromium/src/net/disk_cache/{addr.h,addr_unittest.cc,backend_impl.cc,backend_impl.h,backend_unittest.cc,block_files.cc,block_files.h,block_files_unittest.cc,cache_util.h,cache_util_posix.cc,cache_util_win.cc,disk_cache.h,disk_cache_perftest.cc,disk_cache_test_base.cc,disk_cache_test_base.h,errors.h,eviction.cc,eviction.h,file.h,file_block.h,file_lock.cc,file_lock.h,file_posix.cc,file_win.cc,hash.h,mapped_file.h,mapped_file_posix.cc,mapped_file_unittest.cc,mapped_file_win.cc,mem_rankings.cc,mem_rankings.h,rankings.cc,rankings.h,stats.cc,stats.h,storage_block-inl.h,storage_block.h,storage_block_unittest.cc,stress_cache.cc,trace.cc,trace.h}
3213+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3214+License: global BSD-style Chromium
3215+
3216+Files: chromium/src/net/disk_cache/{disk_cache_test_util.cc,disk_cache_test_util.h,disk_format.h,entry_impl.cc,entry_impl.h,entry_unittest.cc,mem_backend_impl.cc,mem_backend_impl.h,mem_entry_impl.cc,mem_entry_impl.h}
3217+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3218+License: global BSD-style Chromium
3219+
3220+Files: chromium/src/net/disk_cache/{stats_histogram.cc,stats_histogram.h}
3221+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3222+License: global BSD-style Chromium
3223+
3224+Files: chromium/src/net/disk_cache/{addr.cc,bitmap.cc,bitmap.h,bitmap_unittest.cc,histogram_macros.h,sparse_control.cc,sparse_control.h}
3225+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3226+License: global BSD-style Chromium
3227+
3228+Files: chromium/src/net/flip/{flip_bitmasks.h,flip_frame_builder.cc,flip_frame_builder.h,flip_framer.cc,flip_framer.h,flip_framer_test.cc,flip_io_buffer.cc,flip_io_buffer.h,flip_network_transaction.cc,flip_network_transaction.h,flip_network_transaction_unittest.cc,flip_protocol.h,flip_protocol_test.cc,flip_session.cc,flip_session.h,flip_session_pool.cc,flip_session_pool.h,flip_session_unittest.cc,flip_stream.cc,flip_stream.h,flip_stream_unittest.cc,flip_transaction_factory.h}
3229+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3230+License: global BSD-style Chromium
3231+
3232+Files: chromium/src/net/ftp/{ftp_auth_cache.cc,ftp_auth_cache.h}
3233+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3234+License: global BSD-style Chromium
3235+
3236+Files: chromium/src/net/ftp/{ftp_network_layer.cc,ftp_network_layer.h,ftp_network_session.h,ftp_network_transaction.cc,ftp_network_transaction.h,ftp_request_info.h,ftp_response_info.h,ftp_transaction.h,ftp_transaction_factory.h}
3237+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3238+License: global BSD-style Chromium
3239+
3240+Files: chromium/src/net/ftp/{ftp_ctrl_response_buffer.cc,ftp_ctrl_response_buffer.h,ftp_directory_listing_buffer.cc,ftp_directory_listing_buffer.h,ftp_directory_listing_parser.cc,ftp_directory_listing_parser.h,ftp_directory_listing_parser_ls.cc,ftp_directory_listing_parser_ls.h,ftp_directory_listing_parser_mlsd.cc,ftp_directory_listing_parser_mlsd.h,ftp_directory_listing_parser_netware.cc,ftp_directory_listing_parser_netware.h,ftp_directory_listing_parser_unittest.h,ftp_directory_listing_parser_vms.cc,ftp_directory_listing_parser_vms.h,ftp_directory_listing_parser_windows.cc,ftp_directory_listing_parser_windows.h}
3241+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3242+License: global BSD-style Chromium
3243+
3244+Files: chromium/src/net/ftp/{ftp_auth_cache_unittest.cc,ftp_ctrl_response_buffer_unittest.cc,ftp_directory_listing_buffer_unittest.cc,ftp_directory_listing_parser_ls_unittest.cc,ftp_directory_listing_parser_mlsd_unittest.cc,ftp_directory_listing_parser_netware_unittest.cc,ftp_directory_listing_parser_vms_unittest.cc,ftp_directory_listing_parser_windows_unittest.cc,ftp_network_transaction_unittest.cc,ftp_server_type_histograms.cc,ftp_server_type_histograms.h,ftp_util.cc,ftp_util.h,ftp_util_unittest.cc}
3245+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3246+License: global BSD-style Chromium
3247+
3248+Files: chromium/src/net/http/{http_vary_data.h}
3249+Copyright: Copyright: 2006-2008 The Chromium Authors. All rights reserved:
3250+License: GENERATED FILE
3251+
3252+Files: chromium/src/net/http/{http_chunked_decoder.cc,http_chunked_decoder.h}
3253+Copyright: Copyright: 2001:
3254+License: MPL (v1.1) GPL (unversioned/unknown version)
3255+
3256+Files: chromium/src/net/http/{md4.cc,md4.h}
3257+Copyright: Copyright: 2003:
3258+License: MPL (v1.1) GPL (unversioned/unknown version)
3259+
3260+Files: chromium/src/net/http/{des.cc,http_auth_handler_ntlm_portable.cc}
3261+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved / 2003:
3262+License: MPL (v1.1) GPL (unversioned/unknown version)
3263+
3264+Files: chromium/src/net/http/{http_version.h}
3265+Copyright: Copyright: 2006-2008 The Chromium Authors. All rights reserved:
3266+License: ZERO-CODE-FILES or GENERATED
3267+
3268+Files: chromium/src/net/http/{http_atom_list.h,http_auth.cc,http_auth.h,http_auth_handler.cc,http_auth_handler.h,http_auth_handler_basic.cc,http_auth_handler_basic.h,http_auth_handler_basic_unittest.cc,http_auth_handler_digest.cc,http_auth_handler_digest.h,http_auth_handler_digest_unittest.cc,http_auth_unittest.cc,http_cache.h,http_chunked_decoder_unittest.cc,http_network_layer.cc,http_network_layer.h,http_network_layer_unittest.cc,http_request_info.h,http_transaction_factory.h,http_transaction_unittest.cc,http_util.cc,http_vary_data.cc,http_vary_data_unittest.cc}
3269+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3270+License: global BSD-style Chromium
3271+
3272+Files: chromium/src/net/http/{http_basic_stream.cc,http_cache.cc,http_cache_transaction.cc,http_cache_transaction.h,http_cache_unittest.cc,http_network_session.h,http_network_transaction.cc,http_network_transaction.h,http_response_headers.cc,http_response_headers.h,http_response_headers_unittest.cc,http_response_info.h,http_stream_parser.cc,http_transaction.h,http_transaction_unittest.h,http_util.h,http_util_unittest.cc}
3273+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3274+License: global BSD-style Chromium
3275+
3276+Files: chromium/src/net/http/{http_auth_cache.cc,http_auth_cache.h,http_auth_cache_unittest.cc}
3277+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3278+License: global BSD-style Chromium
3279+
3280+Files: chromium/src/net/http/{des.h,des_unittest.cc,http_auth_handler_ntlm.cc,http_auth_handler_ntlm.h,http_auth_handler_ntlm_win.cc,http_auth_sspi_win.cc,http_auth_sspi_win.h,http_auth_sspi_win_unittest.cc,http_basic_stream.h,http_byte_range.cc,http_byte_range.h,http_byte_range_unittest.cc,http_network_session.cc,http_network_transaction_unittest.cc,http_response_info.cc,http_stream.h,http_stream_parser.h,http_util_icu.cc,partial_data.cc,partial_data.h}
3281+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3282+License: global BSD-style Chromium
3283+
3284+Files: chromium/src/net/http/{http_auth_handler_negotiate.h,http_auth_handler_negotiate_posix.cc,http_auth_handler_negotiate_win.cc}
3285+Copyright: Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3286+License: global BSD-style Chromium
3287+
3288+Files: chromium/src/net/ocsp/{nss_ocsp.cc,nss_ocsp.h}
3289+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3290+License: global BSD-style Chromium
3291+
3292+Files: chromium/src/net/proxy/{proxy_resolver_script.h}
3293+Copyright: Copyright: 1998:
3294+License: MPL (v1.1) GPL (unversioned/unknown version)
3295+
3296+Files: chromium/src/net/proxy/{proxy_config.cc,proxy_config.h,proxy_config_service.h,proxy_config_service_win.cc,proxy_config_service_win.h,proxy_info.cc,proxy_info.h,proxy_list.cc,proxy_list.h,proxy_list_unittest.cc,proxy_resolver_winhttp.cc,proxy_resolver_winhttp.h,proxy_retry_info.h,proxy_service.cc,proxy_service_unittest.cc}
3297+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3298+License: global BSD-style Chromium
3299+
3300+Files: chromium/src/net/proxy/{proxy_config_service_fixed.h}
3301+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3302+License: global BSD-style Chromium
3303+
3304+Files: chromium/src/net/proxy/{proxy_script_fetcher.cc,proxy_script_fetcher.h}
3305+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3306+License: global BSD-style Chromium
3307+
3308+Files: chromium/src/net/proxy/{proxy_resolver_mac.cc,proxy_resolver_mac.h,proxy_script_fetcher_unittest.cc}
3309+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3310+License: global BSD-style Chromium
3311+
3312+Files: chromium/src/net/proxy/{proxy_resolver_js_bindings.cc,proxy_resolver_v8.cc}
3313+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3314+License: global BSD-style Chromium
3315+
3316+Files: chromium/src/net/proxy/{init_proxy_resolver.cc,init_proxy_resolver.h,init_proxy_resolver_unittest.cc,mock_proxy_resolver.h,proxy_config_service_common_unittest.cc,proxy_config_service_common_unittest.h,proxy_config_service_linux.cc,proxy_config_service_linux.h,proxy_config_service_linux_unittest.cc,proxy_config_service_mac.cc,proxy_config_service_mac.h,proxy_config_service_win_unittest.cc,proxy_config_unittest.cc,proxy_resolver.h,proxy_resolver_js_bindings.h,proxy_resolver_js_bindings_unittest.cc,proxy_resolver_perftest.cc,proxy_resolver_v8.h,proxy_resolver_v8_unittest.cc,proxy_server.cc,proxy_server.h,proxy_server_mac.cc,proxy_server_unittest.cc,proxy_service.h,single_threaded_proxy_resolver.cc,single_threaded_proxy_resolver.h,single_threaded_proxy_resolver_unittest.cc}
3317+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3318+License: global BSD-style Chromium
3319+
3320+Files: chromium/src/net/socket/{ssl_client_socket_nss.cc}
3321+Copyright: Copyright: 2006-2009 The Chromium Authors. All rights reserved / 2000:
3322+License: MPL (v1.1) GPL (unversioned/unknown version)
3323+
3324+Files: chromium/src/net/socket/{client_socket_factory.cc,client_socket_factory.h,client_socket_handle.cc,client_socket_handle.h,client_socket_pool.h,client_socket_pool_base.cc,socket.h,ssl_client_socket_unittest.cc,ssl_test_util.h,tcp_client_socket_libevent.cc,tcp_client_socket_pool.cc,tcp_client_socket_pool.h,tcp_client_socket_pool_unittest.cc,tcp_client_socket_win.cc}
3325+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3326+License: global BSD-style Chromium
3327+
3328+Files: chromium/src/net/socket/{client_socket.h,ssl_client_socket.h,ssl_client_socket_mac.h,ssl_client_socket_nss.h,ssl_client_socket_win.cc,ssl_client_socket_win.h,tcp_client_socket.h,tcp_client_socket_libevent.h,tcp_client_socket_unittest.cc,tcp_client_socket_win.h,tcp_pinger_unittest.cc}
3329+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3330+License: global BSD-style Chromium
3331+
3332+Files: chromium/src/net/socket/{ssl_client_socket_mac.cc}
3333+Copyright: Copyright (c) 2008-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3334+License: global BSD-style Chromium
3335+
3336+Files: chromium/src/net/socket/{client_socket_pool_base.h,client_socket_pool_base_unittest.cc,socket_test_util.cc,socket_test_util.h,socks5_client_socket.cc,socks5_client_socket.h,socks5_client_socket_unittest.cc,socks_client_socket.cc,socks_client_socket.h,socks_client_socket_unittest.cc,ssl_test_util.cc,tcp_pinger.h}
3337+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3338+License: global BSD-style Chromium
3339+
3340+Files: chromium/src/net/socket_stream/{socket_stream.cc,socket_stream.h,socket_stream_metrics.cc,socket_stream_metrics.h,socket_stream_metrics_unittest.cc,socket_stream_throttle.cc,socket_stream_throttle.h,socket_stream_unittest.cc}
3341+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3342+License: global BSD-style Chromium
3343+
3344+Files: chromium/src/net/third_party/nss/ssl/{authcert.c,cmpcert.c,nsskea.c,os2_err.c,os2_err.h,preenc.h,prelib.c,ssl.h,ssl3con.c,ssl3ecc.c,ssl3ext.c,ssl3gthr.c,ssl3prot.h,sslauth.c,sslcon.c,ssldef.c,sslenum.c,sslerr.c,sslerr.h,sslgathr.c,sslimpl.h,sslnonce.c,sslproto.h,sslreveal.c,sslsecur.c,sslsnce.c,sslsock.c,sslt.h,ssltrace.c,unix_err.c,unix_err.h,win32err.c,win32err.h}
3345+Copyright: Copyright: 1994-2000:
3346+License: MPL (v1.1) GPL (unversioned/unknown version)
3347+
3348+Files: chromium/src/net/third_party/nss/ssl/{derive.c}
3349+Copyright: Copyright: 1994-2005:
3350+License: MPL (v1.1) GPL (unversioned/unknown version)
3351+
3352+Files: chromium/src/net/third_party/nss/ssl/{sslinfo.c,sslmutex.c,sslmutex.h,sslver.c}
3353+Copyright: Copyright: 2001:
3354+License: MPL (v1.1) GPL (unversioned/unknown version)
3355+
3356+Files: chromium/src/net/third_party/nss/ssl/bodge/{alghmac.h,blapi.h,secure_memcmp.c}
3357+Copyright: Copyright: 1994-2000:
3358+License: MPL (v1.1) GPL (unversioned/unknown version)
3359+
3360+Files: chromium/src/net/third_party/nss/ssl/bodge/{genload.c,loader.c,loader.h}
3361+Copyright: Copyright: 2000:
3362+License: MPL (v1.1) GPL (unversioned/unknown version)
3363+
3364+Files: chromium/src/net/third_party/nss/ssl/bodge/{nssrenam.h}
3365+Copyright: Copyright: 2001:
3366+License: MPL (v1.1) GPL (unversioned/unknown version)
3367+
3368+Files: chromium/src/net/third_party/nss/ssl/bodge/{ec.h}
3369+Copyright: Copyright: 2003:
3370+License: MPL (v1.1) GPL (unversioned/unknown version)
3371+
3372+Files: chromium/src/net/tools/crash_cache/{crash_cache.cc}
3373+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3374+License: global BSD-style Chromium
3375+
3376+Files: chromium/src/net/tools/dump_cache/*
3377+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3378+License: global BSD-style Chromium
3379+
3380+Files: chromium/src/net/tools/dump_cache/*
3381+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3382+License: global BSD-style Chromium
3383+
3384+Files: chromium/src/net/tools/fetch/*
3385+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3386+License: global BSD-style Chromium
3387+
3388+Files: chromium/src/net/tools/fetch/*
3389+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3390+License: global BSD-style Chromium
3391+
3392+Files: chromium/src/net/tools/flip_server/{other_defines.h,string_piece_utils.h}
3393+Copyright: UNKNOWN:
3394+License: *No copyright* UNKNOWN
3395+
3396+Files: chromium/src/net/tools/flip_server/{epoll_server.h}
3397+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
3398+License: GENERATED FILE
3399+
3400+Files: chromium/src/net/tools/flip_server/{balsa_enums.h,balsa_frame.cc,balsa_frame.h,balsa_headers.cc,balsa_headers.h,balsa_headers_token_utils.cc,balsa_headers_token_utils.h,balsa_visitor_interface.h,buffer_interface.h,create_listener.cc,create_listener.h,epoll_server.cc,flip_in_mem_edsm_server.cc,http_message_constants.cc,http_message_constants.h,loadtime_measurement.h,ring_buffer.cc,ring_buffer.h,simple_buffer.cc,simple_buffer.h,split.cc,split.h,url_to_filename_encoder.h,url_utilities.h}
3401+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3402+License: global BSD-style Chromium
3403+
3404+Files: chromium/src/net/tools/hresolv/{hresolv.cc}
3405+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3406+License: global BSD-style Chromium
3407+
3408+Files: chromium/src/net/tools/testserver/{testserver.py}
3409+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3410+License: global BSD-style Chromium
3411+
3412+Files: chromium/src/net/tools/tld_cleanup/{tld_cleanup.cc}
3413+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3414+License: global BSD-style Chromium
3415+
3416+Files: chromium/src/net/url_request/{url_request_about_job.cc,url_request_about_job.h,url_request_context.h,url_request_error_job.cc,url_request_error_job.h,url_request_file_dir_job.cc,url_request_file_dir_job.h,url_request_filter.cc,url_request_filter.h,url_request_job_manager.cc,url_request_job_manager.h,url_request_job_metrics.cc,url_request_job_metrics.h,url_request_job_tracker.cc,url_request_job_tracker.h,url_request_redirect_job.cc,url_request_redirect_job.h,url_request_simple_job.cc,url_request_simple_job.h,url_request_status.h,url_request_test_job.cc,url_request_test_job.h,view_cache_helper.cc,view_cache_helper.h}
3417+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3418+License: global BSD-style Chromium
3419+
3420+Files: chromium/src/net/url_request/{request_tracker.h,request_tracker_unittest.cc,url_request.cc,url_request.h,url_request_file_job.cc,url_request_file_job.h,url_request_http_job.cc,url_request_http_job.h,url_request_job.cc,url_request_job.h,url_request_unittest.cc}
3421+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3422+License: global BSD-style Chromium
3423+
3424+Files: chromium/src/net/url_request/{url_request_data_job.cc,url_request_data_job.h,url_request_new_ftp_job.cc,url_request_new_ftp_job.h,url_request_unittest.h,url_request_view_net_internals_job.cc,url_request_view_net_internals_job.h}
3425+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3426+License: global BSD-style Chromium
3427+
3428+Files: chromium/src/net/websockets/{websocket.cc,websocket.h,websocket_throttle.cc,websocket_throttle.h,websocket_throttle_unittest.cc,websocket_unittest.cc}
3429+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3430+License: global BSD-style Chromium
3431+
3432+Files: chromium/src/printing/{emf_win.cc,emf_win.h,emf_win_unittest.cc,page_number.cc,page_number.h,page_number_unittest.cc,page_range.cc,page_range.h,page_range_unittest.cc,page_setup.cc,page_setup.h,page_setup_unittest.cc,print_settings.cc,print_settings.h,printed_document.h,printed_page.cc,printed_page.h,printed_pages_source.h,printing_context.h,printing_context_win_unittest.cc,printing_test.h,run_all_unittests.cc,units.cc,units.h,units_unittest.cc}
3433+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3434+License: global BSD-style Chromium
3435+
3436+Files: chromium/src/printing/{page_overlays.cc,page_overlays.h,page_overlays_unittest.cc}
3437+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3438+License: global BSD-style Chromium
3439+
3440+Files: chromium/src/printing/{image.cc,image.h,native_metafile.h,pdf_metafile_mac.cc,pdf_metafile_mac.h,pdf_metafile_mac_unittest.cc,pdf_ps_metafile_linux.cc,pdf_ps_metafile_linux.h,pdf_ps_metafile_linux_unittest.cc,printed_document.cc,printed_document_linux.cc,printed_document_mac.cc,printed_document_win.cc,printing_context_linux.cc,printing_context_win.cc}
3441+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3442+License: global BSD-style Chromium
3443+
3444+Files: chromium/src/sandbox/linux/seccomp/{access.cc,clone.cc,debug.cc,debug.h,exit.cc,getpid.cc,gettid.cc,ioctl.cc,ipc.cc,library.cc,library.h,madvise.cc,maps.cc,maps.h,mmap.cc,mprotect.cc,munmap.cc,mutex.h,open.cc,sandbox.cc,sandbox.h,sandbox_impl.h,securemem.cc,securemem.h,socketcall.cc,stat.cc,syscall.cc,syscall.h,syscall_table.c,syscall_table.h,tls.h,trusted_process.cc,trusted_thread.cc,x86_decode.cc,x86_decode.h}
3445+Copyright: UNKNOWN:
3446+License: *No copyright* UNKNOWN
3447+
3448+Files: chromium/src/sandbox/linux/seccomp/{linux_syscall_support.h}
3449+Copyright: Copyright: 2005-2008, Google Inc / HOLDERS AND CONTRIBUTORS:
3450+License: BSD (3 clause)
3451+
3452+Files: chromium/src/sandbox/linux/suid/{linux_util.c,linux_util.h,process_util.h,process_util_linux.c,sandbox.c,suid_unsafe_environment_variables.h}
3453+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3454+License: global BSD-style Chromium
3455+
3456+Files: chromium/src/sandbox/sandbox_poc/{resource.h}
3457+Copyright: UNKNOWN:
3458+License: *No copyright* UNKNOWN
3459+
3460+Files: chromium/src/sandbox/sandbox_poc/*
3461+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3462+License: global BSD-style Chromium
3463+
3464+Files: chromium/src/sandbox/sandbox_poc/*
3465+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3466+License: global BSD-style Chromium
3467+
3468+Files: chromium/src/sandbox/sandbox_poc/pocdll/*
3469+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3470+License: global BSD-style Chromium
3471+
3472+Files: chromium/src/sandbox/sandbox_poc/pocdll/*
3473+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3474+License: global BSD-style Chromium
3475+
3476+Files: chromium/src/sandbox/src/{window.h}
3477+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
3478+License: GENERATED FILE
3479+
3480+Files: chromium/src/sandbox/src/{Wow64.cc,Wow64.h,acl.cc,acl.h,broker_services.h,crosscall_client.h,crosscall_params.h,crosscall_server.cc,crosscall_server.h,dep.cc,dep.h,dep_test.cc,eat_resolver.cc,eat_resolver.h,file_policy_test.cc,filesystem_dispatcher.cc,filesystem_dispatcher.h,filesystem_interception.cc,filesystem_interception.h,filesystem_policy.cc,filesystem_policy.h,integrity_level_test.cc,interception.cc,interception.h,interception_agent.cc,interception_agent.h,interception_internal.h,interception_unittest.cc,internal_types.h,ipc_ping_test.cc,ipc_tags.h,ipc_unittest.cc,job.cc,job.h,job_unittest.cc,named_pipe_dispatcher.cc,named_pipe_dispatcher.h,named_pipe_interception.cc,named_pipe_interception.h,named_pipe_policy.cc,named_pipe_policy.h,named_pipe_policy_test.cc,nt_internals.h,policy_broker.cc,policy_broker.h,policy_engine_opcodes.cc,policy_engine_opcodes.h,policy_engine_params.h,policy_engine_processor.cc,policy_engine_processor.h,policy_engine_unittest.cc,policy_low_level.cc,policy_low_level.h,policy_low_level_unittest.cc,policy_opcodes_unittest.cc,policy_params.h,policy_target.cc,policy_target.h,process_policy_test.cc,process_thread_dispatcher.cc,process_thread_dispatcher.h,process_thread_interception.cc,process_thread_interception.h,process_thread_policy.cc,process_thread_policy.h,registry_dispatcher.cc,registry_dispatcher.h,registry_interception.cc,registry_interception.h,registry_policy.cc,registry_policy.h,registry_policy_test.cc,resolver.cc,resolver.h,restricted_token.cc,restricted_token.h,restricted_token_unittest.cc,restricted_token_utils.cc,restricted_token_utils.h,sandbox.cc,sandbox.h,sandbox_factory.h,sandbox_nt_types.h,sandbox_nt_util.cc,sandbox_nt_util.h,sandbox_utils.cc,sandbox_utils.h,security_level.h,service_resolver.cc,service_resolver.h,service_resolver_unittest.cc,shared_handles.cc,shared_handles.h,sharedmem_ipc_client.cc,sharedmem_ipc_client.h,sharedmem_ipc_server.h,sid.cc,sid.h,sid_unittest.cc,sidestep_resolver.cc,sidestep_resolver.h,sync_dispatcher.cc,sync_dispatcher.h,sync_interception.cc,sync_interception.h,sync_policy.cc,sync_policy.h,sync_policy_test.cc,target_interceptions.cc,target_interceptions.h,target_services.cc,target_services.h,threadpool_unittest.cc,win2k_threadpool.cc,win2k_threadpool.h,win_utils.cc,win_utils.h}
3481+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3482+License: global BSD-style Chromium
3483+
3484+Files: chromium/src/sandbox/src/{broker_services.cc,policy_target_test.cc,sandbox_policy.h,sandbox_policy_base.cc,sandbox_policy_base.h,sandbox_types.h,target_process.cc,target_process.h}
3485+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3486+License: global BSD-style Chromium
3487+
3488+Files: chromium/src/sandbox/src/{unload_dll_test.cc}
3489+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3490+License: global BSD-style Chromium
3491+
3492+Files: chromium/src/sandbox/src/{sharedmem_ipc_server.cc,window.cc}
3493+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3494+License: global BSD-style Chromium
3495+
3496+Files: chromium/src/sandbox/src/sidestep/{ia32_modrm_map.cpp,ia32_opcode_map.cpp,mini_disassembler.cpp,preamble_patcher_with_stub.cpp}
3497+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3498+License: BSD (3 clause)
3499+
3500+Files: chromium/src/sandbox/src/sidestep/{mini_disassembler.h,mini_disassembler_types.h,preamble_patcher.h}
3501+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3502+License: global BSD-style Chromium
3503+
3504+Files: chromium/src/sandbox/tests/common/{controller.cc,controller.h}
3505+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3506+License: global BSD-style Chromium
3507+
3508+Files: chromium/src/sandbox/tests/integration_tests/{integration_tests.cc,integration_tests_test.cc}
3509+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3510+License: global BSD-style Chromium
3511+
3512+Files: chromium/src/sandbox/tests/unit_tests/{unit_tests.cc}
3513+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3514+License: global BSD-style Chromium
3515+
3516+Files: chromium/src/sandbox/tests/validation_tests/*
3517+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3518+License: global BSD-style Chromium
3519+
3520+Files: chromium/src/sandbox/tests/validation_tests/*
3521+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3522+License: global BSD-style Chromium
3523+
3524+Files: chromium/src/sandbox/tools/finder/{finder.cc,finder.h,finder_fs.cc,finder_kernel.cc,finder_registry.cc,main.cc,ntundoc.h}
3525+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3526+License: global BSD-style Chromium
3527+
3528+Files: chromium/src/sandbox/tools/launcher/{launcher.cc}
3529+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3530+License: global BSD-style Chromium
3531+
3532+Files: chromium/src/sandbox/wow_helper/{service64_resolver.cc,service64_resolver.h,target_code.cc,target_code.h,wow_helper.cc}
3533+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3534+License: global BSD-style Chromium
3535+
3536+Files: chromium/src/sdch/linux/{config.h}
3537+Copyright: UNKNOWN:
3538+License: *No copyright* GENERATED FILE
3539+
3540+Files: chromium/src/sdch/mac/{config.h}
3541+Copyright: UNKNOWN:
3542+License: *No copyright* UNKNOWN
3543+
3544+Files: chromium/src/sdch/open-vcdiff/{autogen.sh}
3545+Copyright: UNKNOWN:
3546+License: *No copyright* UNKNOWN
3547+
3548+Files: chromium/src/sdch/open-vcdiff/{ltmain.sh}
3549+Copyright: Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006:
3550+License: GPL (v2 or later) GENERATED FILE
3551+
3552+Files: chromium/src/sdch/open-vcdiff/packages/{deb.sh,rpm.sh}
3553+Copyright: UNKNOWN:
3554+License: *No copyright* UNKNOWN
3555+
3556+Files: chromium/src/sdch/open-vcdiff/src/{blockhash.h,vcdiffengine.h}
3557+Copyright: Copyright: 2006 Google Inc:
3558+License: Apache (v2.0)
3559+
3560+Files: chromium/src/sdch/open-vcdiff/src/{blockhash.cc,vcdiffengine.cc}
3561+Copyright: Copyright: 2006, 2008 Google Inc:
3562+License: Apache (v2.0)
3563+
3564+Files: chromium/src/sdch/open-vcdiff/src/{addrcache.cc,addrcache.h,addrcache_test.cc,rolling_hash_test.cc}
3565+Copyright: Copyright: 2007 Google Inc:
3566+License: Apache (v2.0)
3567+
3568+Files: chromium/src/sdch/open-vcdiff/src/{rolling_hash.h}
3569+Copyright: Copyright: 2007, 2008 Google Inc:
3570+License: Apache (v2.0)
3571+
3572+Files: chromium/src/sdch/open-vcdiff/src/{blockhash_test.cc,checksum.h,codetable.cc,codetable.h,codetable_test.cc,compile_assert.h,decodetable.cc,decodetable.h,decodetable_test.cc,encodetable.cc,encodetable.h,encodetable_test.cc,headerparser.cc,headerparser.h,headerparser_test.cc,instruction_map.cc,instruction_map.h,instruction_map_test.cc,logging.cc,logging.h,output_string_crope.h,output_string_test.cc,testing.h,varint_bigendian.cc,varint_bigendian.h,varint_bigendian_test.cc,vcdecoder1_test.cc,vcdecoder2_test.cc,vcdecoder3_test.cc,vcdecoder4_test.cc,vcdecoder5_test.cc,vcdecoder_test.cc,vcdecoder_test.h,vcdiff_defs.h,vcdiff_main.cc,vcdiff_test.sh,vcdiffengine_test.cc,vcencoder_test.cc}
3573+Copyright: Copyright: 2008 Google Inc:
3574+License: Apache (v2.0)
3575+
3576+Files: chromium/src/sdch/open-vcdiff/src/*
3577+Copyright: Copyright: 2007 Google Inc:
3578+License: Apache (v2.0) GENERATED FILE
3579+
3580+Files: chromium/src/sdch/open-vcdiff/src/*
3581+Copyright: Copyright: 2008 Google Inc:
3582+License: Apache (v2.0) GENERATED FILE
3583+
3584+Files: chromium/src/sdch/open-vcdiff/src/*
3585+Copyright: Copyright: 2007, Google Inc / HOLDERS AND CONTRIBUTORS:
3586+License: BSD (3 clause)
3587+
3588+Files: chromium/src/sdch/open-vcdiff/src/*
3589+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2006, Google Inc:
3590+License: BSD (3 clause)
3591+
3592+Files: chromium/src/sdch/open-vcdiff/src/{codetablewriter_interface.h}
3593+Copyright: Copyright: 2008 Google Inc. All Rights Reserved:
3594+License: UNKNOWN
3595+
3596+Files: chromium/src/sdch/open-vcdiff/src/{adler32.c}
3597+Copyright: Copyright: 1995-2004 Mark Adler:
3598+License: zlib/libpng
3599+
3600+Files: chromium/src/sdch/open-vcdiff/src/{zconf.h}
3601+Copyright: Copyright: 1995-2005 Jean-loup Gailly:
3602+License: zlib/libpng
3603+
3604+Files: chromium/src/sdch/open-vcdiff/src/{zlib.h}
3605+Copyright: Copyright: 1995-2005 Jean-loup Gailly and Mark Adler:
3606+License: zlib/libpng
3607+
3608+Files: chromium/src/sdch/open-vcdiff/src/gflags/{gflags.h}
3609+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2006, Google Inc:
3610+License: BSD (3 clause)
3611+
3612+Files: chromium/src/sdch/open-vcdiff/src/google/*
3613+Copyright: Copyright: 2007 Google Inc:
3614+License: Apache (v2.0)
3615+
3616+Files: chromium/src/sdch/open-vcdiff/src/google/*
3617+Copyright: Copyright: 2008 Google Inc:
3618+License: Apache (v2.0)
3619+
3620+Files: chromium/src/sdch/open-vcdiff/src/gtest/{gtest-spi.h}
3621+Copyright: Copyright: 2007, Google Inc / HOLDERS AND CONTRIBUTORS:
3622+License: BSD (3 clause)
3623+
3624+Files: chromium/src/sdch/open-vcdiff/src/gtest/{gtest-death-test.cc,gtest-death-test.h,gtest-message.h,gtest.cc,gtest.h}
3625+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2005, Google Inc:
3626+License: BSD (3 clause)
3627+
3628+Files: chromium/src/sdch/open-vcdiff/src/gtest/{gtest_main.cc,gtest_prod.h}
3629+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2006, Google Inc:
3630+License: BSD (3 clause)
3631+
3632+Files: chromium/src/sdch/open-vcdiff/src/gtest/{gtest-filepath.cc,gtest-port.cc}
3633+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3634+License: BSD (3 clause)
3635+
3636+Files: chromium/src/sdch/open-vcdiff/src/gtest/{gtest_pred_impl.h}
3637+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2006, Google Inc:
3638+License: BSD (3 clause) GENERATED FILE
3639+
3640+Files: chromium/src/sdch/open-vcdiff/src/gtest/internal/*
3641+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2005, Google Inc:
3642+License: BSD (3 clause)
3643+
3644+Files: chromium/src/sdch/open-vcdiff/src/gtest/internal/*
3645+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3646+License: BSD (3 clause)
3647+
3648+Files: chromium/src/sdch/open-vcdiff/src/gtest/src/{gtest-internal-inl.h}
3649+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2005, Google Inc:
3650+License: BSD (3 clause)
3651+
3652+Files: chromium/src/sdch/open-vcdiff/vsprojects/{config.h,stdint.h}
3653+Copyright: Copyright: 2008 Google Inc:
3654+License: Apache (v2.0)
3655+
3656+Files: chromium/src/site_scons/site_tools/{chromium_builders.py}
3657+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3658+License: global BSD-style Chromium
3659+
3660+Files: chromium/src/skia/config/{SkUserConfig.h}
3661+Copyright: Copyright: 2006 The Android Open Source Project:
3662+License: Apache (v2.0)
3663+
3664+Files: chromium/src/skia/config/win/{stdint.h}
3665+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3666+License: global BSD-style Chromium
3667+
3668+Files: chromium/src/skia/ext/*
3669+Copyright: Copyright: 2008, Google Inc:
3670+License: Apache (v2.0)
3671+
3672+Files: chromium/src/skia/ext/*
3673+Copyright: Copyright: 2009, Google Inc:
3674+License: Apache (v2.0)
3675+
3676+Files: chromium/src/skia/ext/{bitmap_platform_device_mac.cc,bitmap_platform_device_mac.h,bitmap_platform_device_win.cc,bitmap_platform_device_win.h,platform_canvas.cc,platform_canvas.h,platform_canvas_linux.cc,platform_canvas_mac.cc,platform_canvas_unittest.cc,platform_canvas_win.cc,platform_device.h,platform_device_linux.cc,platform_device_linux.h,platform_device_mac.cc,platform_device_mac.h,platform_device_win.cc,platform_device_win.h,skia_utils_mac.h,skia_utils_win.cc,skia_utils_win.h,vector_canvas_unittest.cc}
3677+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3678+License: global BSD-style Chromium
3679+
3680+Files: chromium/src/skia/ext/{vector_canvas.cc,vector_canvas.h,vector_canvas_win.cc}
3681+Copyright: Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3682+License: global BSD-style Chromium
3683+
3684+Files: chromium/src/skia/ext/{platform_canvas_win.h}
3685+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3686+License: global BSD-style Chromium
3687+
3688+Files: chromium/src/skia/ext/{SkMemory_new_handler.cpp,SkTypeface_fake.cpp,bitmap_platform_device.h,bitmap_platform_device_linux.cc,bitmap_platform_device_linux.h,canvas_paint.h,canvas_paint_linux.h,canvas_paint_mac.h,canvas_paint_win.h,convolver.cc,convolver.h,convolver_unittest.cc,google_logging.cc,image_operations.cc,image_operations.h,image_operations_unittest.cc,skia_utils.cc,skia_utils.h,skia_utils_gtk.cc,skia_utils_gtk.h,vector_canvas_linux.cc,vector_platform_device.h,vector_platform_device_linux.cc,vector_platform_device_linux.h,vector_platform_device_win.cc,vector_platform_device_win.h}
3689+Copyright: Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3690+License: global BSD-style Chromium
3691+
3692+Files: chromium/src/testing/{generate_gmock_mutant.py,gmock_mutant.h}
3693+Copyright: Copyright: 2009 The Chromium Authors. All rights reserved:
3694+License: GENERATED FILE
3695+
3696+Files: chromium/src/testing/*
3697+Copyright: Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3698+License: global BSD-style Chromium
3699+
3700+Files: chromium/src/testing/*
3701+Copyright: Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.:
3702+License: global BSD-style Chromium
3703+
3704+Files: chromium/src/testing/gmock/include/gmock/{gmock-actions.h,gmock-cardinalities.h,gmock-matchers.h,gmock-more-actions.h,gmock-printers.h,gmock-spec-builders.h,gmock.h}
3705+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2007, Google Inc:
3706+License: BSD (3 clause)
3707+
3708+Files: chromium/src/testing/gmock/include/gmock/*
3709+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2007, Google Inc:
3710+License: BSD (3 clause) GENERATED FILE
3711+
3712+Files: chromium/src/testing/gmock/include/gmock/*
3713+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3714+License: BSD (3 clause) GENERATED FILE
3715+
3716+Files: chromium/src/testing/gmock/include/gmock/internal/*
3717+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2007, Google Inc:
3718+License: BSD (3 clause)
3719+
3720+Files: chromium/src/testing/gmock/include/gmock/internal/*
3721+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3722+License: BSD (3 clause)
3723+
3724+Files: chromium/src/testing/gmock/include/gmock/internal/{gmock-generated-internal-utils.h}
3725+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2007, Google Inc:
3726+License: BSD (3 clause) GENERATED FILE
3727+
3728+Files: chromium/src/testing/gmock/scripts/{upload.py}
3729+Copyright: Copyright: 2007 Google Inc:
3730+License: Apache (v2.0)
3731+
3732+Files: chromium/src/testing/gmock/scripts/*
3733+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3734+License: BSD (3 clause)
3735+
3736+Files: chromium/src/testing/gmock/scripts/*
3737+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
3738+License: BSD (3 clause)
3739+
3740+Files: chromium/src/testing/gmock/scripts/generator/{gmock_gen.py}
3741+Copyright: Copyright: 2008 Google Inc. All Rights Reserved:
3742+License: Apache (v2.0)
3743+
3744+Files: chromium/src/testing/gmock/scripts/generator/cpp/{ast.py,keywords.py,tokenize.py,utils.py}
3745+Copyright: Copyright: 2007 Google Inc / 2007 Neal Norwitz:
3746+License: Apache (v2.0)
3747+
3748+Files: chromium/src/testing/gmock/scripts/generator/cpp/{gmock_class.py}
3749+Copyright: Copyright: 2008 Google Inc. All Rights Reserved:
3750+License: Apache (v2.0)
3751+
3752+Files: chromium/src/testing/gmock/scripts/generator/cpp/{gmock_class_test.py}
3753+Copyright: Copyright: 2009 Google Inc. All Rights Reserved / 2009 Neal Norwitz All Rights Reserved:
3754+License: Apache (v2.0)
3755+
3756+Files: chromium/src/testing/gmock/src/*
3757+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2007, Google Inc:
3758+License: BSD (3 clause)
3759+
3760+Files: chromium/src/testing/gmock/src/*
3761+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3762+License: BSD (3 clause)
3763+
3764+Files: chromium/src/testing/gmock/test/{gmock_test_utils.py}
3765+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2006, Google Inc:
3766+License: BSD (3 clause)
3767+
3768+Files: chromium/src/testing/gmock/test/{gmock-actions_test.cc,gmock-cardinalities_test.cc,gmock-generated-function-mockers_test.cc,gmock-generated-internal-utils_test.cc,gmock-internal-utils_test.cc,gmock-matchers_test.cc,gmock-more-actions_test.cc,gmock-printers_test.cc,gmock-spec-builders_test.cc}
3769+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2007, Google Inc:
3770+License: BSD (3 clause)
3771+
3772+Files: chromium/src/testing/gmock/test/{gmock-nice-strict_test.cc,gmock-port_test.cc,gmock_link2_test.cc,gmock_link_test.cc,gmock_output_test.py,gmock_output_test_.cc,gmock_test.cc}
3773+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3774+License: BSD (3 clause)
3775+
3776+Files: chromium/src/testing/gmock/test/{gmock_leak_test.py,gmock_leak_test_.cc,gmock_link_test.h}
3777+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
3778+License: BSD (3 clause)
3779+
3780+Files: chromium/src/testing/gmock/test/*
3781+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2007, Google Inc:
3782+License: BSD (3 clause) GENERATED FILE
3783+
3784+Files: chromium/src/testing/gmock/test/*
3785+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3786+License: BSD (3 clause) GENERATED FILE
3787+
3788+Files: chromium/src/testing/gtest/{run_tests.py}
3789+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc. All rights reserved:
3790+License: BSD (3 clause)
3791+
3792+Files: chromium/src/testing/gtest/codegear/{gtest_all.cc,gtest_link.cc}
3793+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
3794+License: BSD (3 clause)
3795+
3796+Files: chromium/src/testing/gtest/include/gtest/{gtest-death-test.h,gtest-message.h,gtest.h}
3797+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2005, Google Inc:
3798+License: BSD (3 clause)
3799+
3800+Files: chromium/src/testing/gtest/include/gtest/{gtest_prod.h}
3801+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2006, Google Inc:
3802+License: BSD (3 clause)
3803+
3804+Files: chromium/src/testing/gtest/include/gtest/{gtest-spi.h}
3805+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2007, Google Inc:
3806+License: BSD (3 clause)
3807+
3808+Files: chromium/src/testing/gtest/include/gtest/{gtest-typed-test.h}
3809+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008 Google Inc:
3810+License: BSD (3 clause)
3811+
3812+Files: chromium/src/testing/gtest/include/gtest/{gtest-test-part.h}
3813+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3814+License: BSD (3 clause)
3815+
3816+Files: chromium/src/testing/gtest/include/gtest/*
3817+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2006, Google Inc:
3818+License: BSD (3 clause) GENERATED FILE
3819+
3820+Files: chromium/src/testing/gtest/include/gtest/*
3821+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3822+License: BSD (3 clause) GENERATED FILE
3823+
3824+Files: chromium/src/testing/gtest/include/gtest/internal/{gtest-linked_ptr.h}
3825+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2003 Google Inc:
3826+License: BSD (3 clause)
3827+
3828+Files: chromium/src/testing/gtest/include/gtest/internal/{gtest-death-test-internal.h,gtest-internal.h,gtest-port.h,gtest-string.h}
3829+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2005, Google Inc:
3830+License: BSD (3 clause)
3831+
3832+Files: chromium/src/testing/gtest/include/gtest/internal/{gtest-param-util.h}
3833+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008 Google Inc:
3834+License: BSD (3 clause)
3835+
3836+Files: chromium/src/testing/gtest/include/gtest/internal/{gtest-filepath.h}
3837+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3838+License: BSD (3 clause)
3839+
3840+Files: chromium/src/testing/gtest/include/gtest/internal/*
3841+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008 Google Inc:
3842+License: BSD (3 clause) GENERATED FILE
3843+
3844+Files: chromium/src/testing/gtest/include/gtest/internal/*
3845+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009 Google Inc:
3846+License: BSD (3 clause) GENERATED FILE
3847+
3848+Files: chromium/src/testing/gtest/samples/{sample10_unittest.cc,sample9_unittest.cc}
3849+Copyright: Copyright: 2009 Google Inc. All Rights Reserved / HOLDERS AND CONTRIBUTORS:
3850+License: BSD (3 clause)
3851+
3852+Files: chromium/src/testing/gtest/samples/{sample1.cc,sample1.h,sample1_unittest.cc,sample2.cc,sample2.h,sample2_unittest.cc,sample3-inl.h,sample3_unittest.cc,sample4.cc,sample4.h,sample4_unittest.cc,sample5_unittest.cc}
3853+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2005, Google Inc:
3854+License: BSD (3 clause)
3855+
3856+Files: chromium/src/testing/gtest/samples/{prime_tables.h,sample6_unittest.cc,sample7_unittest.cc,sample8_unittest.cc}
3857+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008 Google Inc:
3858+License: BSD (3 clause)
3859+
3860+Files: chromium/src/testing/gtest/scripts/{upload.py}
3861+Copyright: Copyright: 2007 Google Inc:
3862+License: Apache (v2.0)
3863+
3864+Files: chromium/src/testing/gtest/scripts/{generate_gtest_def.py}
3865+Copyright: Copyright: 2009 Google Inc. All Rights Reserved / HOLDERS AND CONTRIBUTORS:
3866+License: BSD (3 clause)
3867+
3868+Files: chromium/src/testing/gtest/scripts/{gen_gtest_pred_impl.py}
3869+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2006, Google Inc:
3870+License: BSD (3 clause)
3871+
3872+Files: chromium/src/testing/gtest/scripts/{fuse_gtest_files.py,upload_gtest.py}
3873+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
3874+License: BSD (3 clause)
3875+
3876+Files: chromium/src/testing/gtest/src/{gtest-death-test.cc,gtest-internal-inl.h,gtest.cc}
3877+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2005, Google Inc:
3878+License: BSD (3 clause)
3879+
3880+Files: chromium/src/testing/gtest/src/{gtest_main.cc}
3881+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2006, Google Inc:
3882+License: BSD (3 clause)
3883+
3884+Files: chromium/src/testing/gtest/src/{gtest-typed-test.cc}
3885+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008 Google Inc:
3886+License: BSD (3 clause)
3887+
3888+Files: chromium/src/testing/gtest/src/{gtest-all.cc,gtest-filepath.cc,gtest-port.cc,gtest-test-part.cc}
3889+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3890+License: BSD (3 clause)
3891+
3892+Files: chromium/src/testing/gtest/test/{gtest_dll_test_.cc,gtest_shuffle_test.py,run_tests_util_test.py}
3893+Copyright: Copyright: 2009 Google Inc. All Rights Reserved / HOLDERS AND CONTRIBUTORS:
3894+License: BSD (3 clause)
3895+
3896+Files: chromium/src/testing/gtest/test/{gtest-listener_test.cc,gtest-unittest-api_test.cc}
3897+Copyright: Copyright: 2009 Google Inc. All rights reserved / HOLDERS AND CONTRIBUTORS:
3898+License: BSD (3 clause)
3899+
3900+Files: chromium/src/testing/gtest/test/{gtest-linked_ptr_test.cc}
3901+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2003, Google Inc:
3902+License: BSD (3 clause)
3903+
3904+Files: chromium/src/testing/gtest/test/{gtest_filter_unittest.py}
3905+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2005 Google Inc. All Rights Reserved:
3906+License: BSD (3 clause)
3907+
3908+Files: chromium/src/testing/gtest/test/{gtest-death-test_test.cc,gtest-message_test.cc,gtest_filter_unittest_.cc,gtest_output_test_.cc,gtest_unittest.cc}
3909+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2005, Google Inc:
3910+License: BSD (3 clause)
3911+
3912+Files: chromium/src/testing/gtest/test/{gtest_break_on_failure_unittest.py,gtest_break_on_failure_unittest_.cc,gtest_list_tests_unittest.py,gtest_list_tests_unittest_.cc,gtest_main_unittest.cc,gtest_no_test_unittest.cc,gtest_prod_test.cc,gtest_test_utils.py,gtest_xml_output_unittest.py,gtest_xml_output_unittest_.cc,gtest_xml_test_utils.py,production.cc,production.h}
3913+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2006, Google Inc:
3914+License: BSD (3 clause)
3915+
3916+Files: chromium/src/testing/gtest/test/{gtest-tuple_test.cc,gtest_environment_test.cc,gtest_nc.cc,gtest_nc_test.py,gtest_stress_test.cc}
3917+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2007, Google Inc:
3918+License: BSD (3 clause)
3919+
3920+Files: chromium/src/testing/gtest/test/{gtest-test-part_test.cc,gtest-typed-test2_test.cc,gtest-typed-test_test.cc,gtest-typed-test_test.h}
3921+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008 Google Inc:
3922+License: BSD (3 clause)
3923+
3924+Files: chromium/src/testing/gtest/test/{run_tests_util.py}
3925+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008 Google Inc. All Rights Reserved:
3926+License: BSD (3 clause)
3927+
3928+Files: chromium/src/testing/gtest/test/{gtest-filepath_test.cc,gtest-options_test.cc,gtest-param-test2_test.cc,gtest-param-test_test.cc,gtest-param-test_test.h,gtest-port_test.cc,gtest_color_test.py,gtest_color_test_.cc,gtest_env_var_test.py,gtest_env_var_test_.cc,gtest_output_test.py,gtest_repeat_test.cc,gtest_sole_header_test.cc,gtest_uninitialized_test.py,gtest_uninitialized_test_.cc,gtest_xml_outfile1_test_.cc,gtest_xml_outfile2_test_.cc,gtest_xml_outfiles_test.py}
3929+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3930+License: BSD (3 clause)
3931+
3932+Files: chromium/src/testing/gtest/test/{gtest_all_test.cc,gtest_help_test.py,gtest_help_test_.cc,gtest_shuffle_test_.cc,gtest_throw_on_failure_ex_test.cc,gtest_throw_on_failure_test.py,gtest_throw_on_failure_test_.cc}
3933+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2009, Google Inc:
3934+License: BSD (3 clause)
3935+
3936+Files: chromium/src/testing/gtest/test/{gtest_pred_impl_unittest.cc}
3937+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2006, Google Inc:
3938+License: BSD (3 clause) GENERATED FILE
3939+
3940+Files: chromium/src/testing/gtest/xcode/Samples/FrameworkSample/{widget.cc,widget.h,widget_test.cc}
3941+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3942+License: BSD (3 clause)
3943+
3944+Files: chromium/src/testing/gtest/xcode/Scripts/{runtests.sh,versiongenerate.py}
3945+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2008, Google Inc:
3946+License: BSD (3 clause)
3947+
3948+Files: chromium/src/third_party/WebKit/JavaScriptCore/{JavaScriptCorePrefix.h,make-generated-sources.sh}
3949+Copyright: UNKNOWN:
3950+License: BSD (2 clause)/LGPL 2 (or later)/LGPL 2.1 (or later)
3951+
3952+Files: chromium/src/third_party/WebKit/JavaScriptCore/*
3953+Copyright: Copyright: 2006 Bjoern Graf (bjoern.graf@gmail.com) / 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org):
3954+License: LGPL (v2 or later)
3955+
3956+Files: chromium/src/third_party/WebKit/JavaScriptCore/*
3957+Copyright: Copyright: 2006 Samuel Weinig <sam.weinig@gmail.com> / 2006, 2007, 2008 Apple Inc. All rights reserved:
3958+License: LGPL (v2 or later)
3959+
3960+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{APICast.h,JSBase.h,JSClassRef.h,JSContextRef.h,JSStringRef.h,JSValueRef.h}
3961+Copyright: Copyright: 2006 Apple Computer, Inc. All rights reserved:
3962+License: BSD (2 clause)
3963+
3964+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{JavaScript.h}
3965+Copyright: Copyright: 2006 Apple Inc. All rights reserved / 2008 Alp Toker <alp@atoker.com>:
3966+License: BSD (2 clause)
3967+
3968+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{JSStringRefCF.cpp,JSStringRefCF.h}
3969+Copyright: Copyright: 2006, 2007 Apple Computer, Inc. All rights reserved:
3970+License: BSD (2 clause)
3971+
3972+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{JSBase.cpp,JSClassRef.cpp,JSContextRef.cpp,JSStringRef.cpp,JSValueRef.cpp}
3973+Copyright: Copyright: 2006, 2007 Apple Inc. All rights reserved:
3974+License: BSD (2 clause)
3975+
3976+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{JSObjectRef.h}
3977+Copyright: Copyright: 2006, 2007 Apple Inc. All rights reserved / 2008 Kelvin W Sherlock (ksherlock@gmail.com):
3978+License: BSD (2 clause)
3979+
3980+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{JSCallbackConstructor.cpp}
3981+Copyright: Copyright: 2006, 2007, 2008 Apple Inc. All rights reserved:
3982+License: BSD (2 clause)
3983+
3984+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{JSCallbackConstructor.h,JSCallbackFunction.cpp,JSCallbackFunction.h,JavaScriptCore.h}
3985+Copyright: Copyright: 2006, 2008 Apple Inc. All rights reserved:
3986+License: BSD (2 clause)
3987+
3988+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{JSCallbackObject.cpp}
3989+Copyright: Copyright: 2007 Eric Seidel <eric@webkit.org> / 2006 Apple Computer, Inc. All rights reserved:
3990+License: BSD (2 clause)
3991+
3992+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{JSCallbackObject.h}
3993+Copyright: Copyright: 2007 Eric Seidel <eric@webkit.org> / 2006, 2007, 2008 Apple Inc. All rights reserved:
3994+License: BSD (2 clause)
3995+
3996+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{JSCallbackObjectFunctions.h}
3997+Copyright: Copyright: 2007 Eric Seidel <eric@webkit.org> / 2006, 2008 Apple Inc. All rights reserved:
3998+License: BSD (2 clause)
3999+
4000+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{JSBasePrivate.h}
4001+Copyright: Copyright: 2008 Apple Computer, Inc. All rights reserved:
4002+License: BSD (2 clause)
4003+
4004+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{WebKitAvailability.h}
4005+Copyright: Copyright: 2008 Apple Inc. All Rights Reserved:
4006+License: BSD (2 clause)
4007+
4008+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{JSProfilerPrivate.cpp,JSProfilerPrivate.h,OpaqueJSString.cpp,OpaqueJSString.h}
4009+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4010+License: BSD (2 clause)
4011+
4012+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{JSObjectRef.cpp}
4013+Copyright: Copyright: 2008 Kelvin W Sherlock (ksherlock@gmail.com) / 2006, 2007, 2008 Apple Inc. All rights reserved:
4014+License: BSD (2 clause)
4015+
4016+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{JSContextRefPrivate.h}
4017+Copyright: Copyright: 2009 Apple Computer, Inc. All rights reserved:
4018+License: BSD (2 clause)
4019+
4020+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/{APIShims.h}
4021+Copyright: Copyright: 2009 Apple Inc. All rights reserved:
4022+License: BSD (2 clause)
4023+
4024+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/*
4025+Copyright: Copyright: 2005, 2006, 2007 Apple Inc. All rights reserved:
4026+License: BSD (3 clause)
4027+
4028+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/*
4029+Copyright: Copyright: 2007 Apple Inc. All rights reserved:
4030+License: BSD (3 clause)
4031+
4032+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/tests/*
4033+Copyright: Copyright: 2006 Apple Computer, Inc. All rights reserved:
4034+License: BSD (2 clause)
4035+
4036+Files: chromium/src/third_party/WebKit/JavaScriptCore/API/tests/*
4037+Copyright: Copyright: 2006 Apple Computer, Inc. All rights reserved / 2007 Alp Toker <alp@atoker.com>:
4038+License: BSD (2 clause)
4039+
4040+Files: chromium/src/third_party/WebKit/JavaScriptCore/ForwardingHeaders/JavaScriptCore/{APICast.h,JSBase.h,JSContextRef.h,JSObjectRef.h,JSRetainPtr.h,JSStringRef.h,JSStringRefCF.h,JSValueRef.h,JavaScript.h,JavaScriptCore.h,OpaqueJSString.h,WebKitAvailability.h}
4041+Copyright: UNKNOWN:
4042+License: ZERO-CODE-FILES or GENERATED
4043+
4044+Files: chromium/src/third_party/WebKit/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/{build-generated-files.sh}
4045+Copyright: UNKNOWN:
4046+License: BSD (2 clause)/LGPL 2 (or later)/LGPL 2.1 (or later)
4047+
4048+Files: chromium/src/third_party/WebKit/JavaScriptCore/assembler/{MacroAssemblerARM.h}
4049+Copyright: Copyright: 2008 Apple Inc / 2009 University of Szeged:
4050+License: BSD (2 clause)
4051+
4052+Files: chromium/src/third_party/WebKit/JavaScriptCore/assembler/{AbstractMacroAssembler.h,AssemblerBuffer.h,MacroAssembler.h,MacroAssemblerX86.h,MacroAssemblerX86Common.h,MacroAssemblerX86_64.h,X86Assembler.h}
4053+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4054+License: BSD (2 clause)
4055+
4056+Files: chromium/src/third_party/WebKit/JavaScriptCore/assembler/{ARMv7Assembler.h,CodeLocation.h,MacroAssemblerARMv7.h,MacroAssemblerCodeRef.h,RepatchBuffer.h}
4057+Copyright: Copyright: 2009 Apple Inc. All rights reserved:
4058+License: BSD (2 clause)
4059+
4060+Files: chromium/src/third_party/WebKit/JavaScriptCore/assembler/{ARMAssembler.cpp,ARMAssembler.h,AssemblerBufferWithConstantPool.h,MacroAssemblerARM.cpp}
4061+Copyright: Copyright: 2009 University of Szeged:
4062+License: BSD (2 clause)
4063+
4064+Files: chromium/src/third_party/WebKit/JavaScriptCore/assembler/{LinkBuffer.h}
4065+Copyright: Copyright: 2009 Apple Inc. All rights reserved:
4066+License: BSD (2 clause) GENERATED FILE
4067+
4068+Files: chromium/src/third_party/WebKit/JavaScriptCore/bytecode/{StructureStubInfo.cpp,StructureStubInfo.h}
4069+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4070+License: BSD (2 clause)
4071+
4072+Files: chromium/src/third_party/WebKit/JavaScriptCore/bytecode/{Instruction.h,SamplingTool.h}
4073+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4074+License: BSD (3 clause)
4075+
4076+Files: chromium/src/third_party/WebKit/JavaScriptCore/bytecode/{JumpTable.cpp,JumpTable.h,Opcode.cpp}
4077+Copyright: Copyright: 2008 Apple Inc. All rights reserved / 2008 Cameron Zwarich <cwzwarich@uwaterloo.ca>:
4078+License: BSD (3 clause)
4079+
4080+Files: chromium/src/third_party/WebKit/JavaScriptCore/bytecode/{EvalCodeCache.h,SamplingTool.cpp}
4081+Copyright: Copyright: 2008, 2009 Apple Inc. All rights reserved:
4082+License: BSD (3 clause)
4083+
4084+Files: chromium/src/third_party/WebKit/JavaScriptCore/bytecode/{CodeBlock.cpp,CodeBlock.h,Opcode.h}
4085+Copyright: Copyright: 2008, 2009 Apple Inc. All rights reserved / 2008 Cameron Zwarich <cwzwarich@uwaterloo.ca>:
4086+License: BSD (3 clause)
4087+
4088+Files: chromium/src/third_party/WebKit/JavaScriptCore/bytecompiler/*
4089+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4090+License: BSD (3 clause)
4091+
4092+Files: chromium/src/third_party/WebKit/JavaScriptCore/bytecompiler/*
4093+Copyright: Copyright: 2008, 2009 Apple Inc. All rights reserved / 2008 Cameron Zwarich <cwzwarich@uwaterloo.ca>:
4094+License: BSD (3 clause)
4095+
4096+Files: chromium/src/third_party/WebKit/JavaScriptCore/bytecompiler/{NodesCodegen.cpp}
4097+Copyright: Copyright: 2007 Eric Seidel <eric@webkit.org> / 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 2001 Peter Kelly (pmk@post.com) / 2007 Maks Orlovich / 1999-2002 Harri Porten (porten@kde.org) / 2007 Cameron Zwarich (cwzwarich@uwaterloo.ca):
4098+License: LGPL (v2 or later)
4099+
4100+Files: chromium/src/third_party/WebKit/JavaScriptCore/debugger/{DebuggerActivation.cpp,DebuggerActivation.h}
4101+Copyright: Copyright: 2008, 2009 Apple Inc. All rights reserved:
4102+License: BSD (2 clause)
4103+
4104+Files: chromium/src/third_party/WebKit/JavaScriptCore/debugger/{DebuggerCallFrame.cpp,DebuggerCallFrame.h}
4105+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4106+License: BSD (3 clause)
4107+
4108+Files: chromium/src/third_party/WebKit/JavaScriptCore/debugger/*
4109+Copyright: Copyright: 2008 Apple Inc. All rights reserved / 1999-2001 Harri Porten (porten@kde.org) / 2001 Peter Kelly (pmk@post.com):
4110+License: LGPL (v2 or later)
4111+
4112+Files: chromium/src/third_party/WebKit/JavaScriptCore/debugger/*
4113+Copyright: Copyright: 2008, 2009 Apple Inc. All rights reserved / 1999-2001 Harri Porten (porten@kde.org) / 2001 Peter Kelly (pmk@post.com):
4114+License: LGPL (v2 or later)
4115+
4116+Files: chromium/src/third_party/WebKit/JavaScriptCore/docs/{make-bytecode-docs.pl}
4117+Copyright: UNKNOWN:
4118+License: BSD (2 clause)/LGPL 2 (or later)/LGPL 2.1 (or later)
4119+
4120+Files: chromium/src/third_party/WebKit/JavaScriptCore/icu/unicode/{utf16.h}
4121+Copyright: Copyright: !U_IS_SURROGATE / 1999-2004, International Business Machines / ((&0xfffffc00)==0xd800):
4122+License: ICU-License
4123+
4124+Files: chromium/src/third_party/WebKit/JavaScriptCore/icu/unicode/{utypes.h}
4125+Copyright: Copyright: 1996-2004, International Business Machines:
4126+License: ICU-License
4127+
4128+Files: chromium/src/third_party/WebKit/JavaScriptCore/icu/unicode/{unorm.h}
4129+Copyright: Copyright: 1996-2004, International Business Machines Corporation:
4130+License: ICU-License
4131+
4132+Files: chromium/src/third_party/WebKit/JavaScriptCore/icu/unicode/{ucol.h}
4133+Copyright: Copyright: 1996-2005, International Business Machines Corporation and others:
4134+License: ICU-License
4135+
4136+Files: chromium/src/third_party/WebKit/JavaScriptCore/icu/unicode/{platform.h,putil.h,uchar.h,uloc.h}
4137+Copyright: Copyright: 1997-2004, International Business Machines:
4138+License: ICU-License
4139+
4140+Files: chromium/src/third_party/WebKit/JavaScriptCore/icu/unicode/{ustring.h}
4141+Copyright: Copyright: 1998-2004, International Business Machines:
4142+License: ICU-License
4143+
4144+Files: chromium/src/third_party/WebKit/JavaScriptCore/icu/unicode/{parseerr.h,ucnv.h,ucnv_err.h,umachine.h,utf.h,utf8.h}
4145+Copyright: Copyright: 1999-2004, International Business Machines:
4146+License: ICU-License
4147+
4148+Files: chromium/src/third_party/WebKit/JavaScriptCore/icu/unicode/{uversion.h}
4149+Copyright: Copyright: 2000-2004, International Business Machines / string / 2004, International Business Machines Corporation and others. All Rights Reserved. " / */:
4150+License: ICU-License
4151+
4152+Files: chromium/src/third_party/WebKit/JavaScriptCore/icu/unicode/{uconfig.h,uenum.h,uiter.h,urename.h,uset.h}
4153+Copyright: Copyright: 2002-2004, International Business Machines:
4154+License: ICU-License
4155+
4156+Files: chromium/src/third_party/WebKit/JavaScriptCore/icu/unicode/{utf_old.h}
4157+Copyright: UNKNOWN:
4158+License: ICU-License
4159+
4160+Files: chromium/src/third_party/WebKit/JavaScriptCore/interpreter/*
4161+Copyright: Copyright: 2008 Apple Inc. All Rights Reserved:
4162+License: BSD (2 clause)
4163+
4164+Files: chromium/src/third_party/WebKit/JavaScriptCore/interpreter/*
4165+Copyright: Copyright: 2009 Apple Inc. All rights reserved:
4166+License: BSD (2 clause)
4167+
4168+Files: chromium/src/third_party/WebKit/JavaScriptCore/interpreter/{Interpreter.h,RegisterFile.cpp}
4169+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4170+License: BSD (3 clause)
4171+
4172+Files: chromium/src/third_party/WebKit/JavaScriptCore/interpreter/{Register.h,RegisterFile.h}
4173+Copyright: Copyright: 2008, 2009 Apple Inc. All rights reserved:
4174+License: BSD (3 clause)
4175+
4176+Files: chromium/src/third_party/WebKit/JavaScriptCore/interpreter/{Interpreter.cpp}
4177+Copyright: Copyright: 2008, 2009 Apple Inc. All rights reserved / 2008 Cameron Zwarich <cwzwarich@uwaterloo.ca>:
4178+License: BSD (3 clause)
4179+
4180+Files: chromium/src/third_party/WebKit/JavaScriptCore/interpreter/{CallFrame.h}
4181+Copyright: Copyright: 2003, 2007, 2008 Apple Inc. All rights reserved / 1999-2001 Harri Porten (porten@kde.org) / 2001 Peter Kelly (pmk@post.com):
4182+License: LGPL (v2 or later)
4183+
4184+Files: chromium/src/third_party/WebKit/JavaScriptCore/jit/{ExecutableAllocator.cpp,ExecutableAllocator.h,ExecutableAllocatorPosix.cpp,ExecutableAllocatorWin.cpp,JIT.h,JITArithmetic.cpp,JITCall.cpp,JITCode.h,JITInlineMethods.h,JITStubCall.h}
4185+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4186+License: BSD (2 clause)
4187+
4188+Files: chromium/src/third_party/WebKit/JavaScriptCore/jit/{JIT.cpp,JITPropertyAccess.cpp}
4189+Copyright: Copyright: 2008, 2009 Apple Inc. All rights reserved:
4190+License: BSD (2 clause)
4191+
4192+Files: chromium/src/third_party/WebKit/JavaScriptCore/jit/{ExecutableAllocatorFixedVMPool.cpp,JITOpcodes.cpp}
4193+Copyright: Copyright: 2009 Apple Inc. All rights reserved:
4194+License: BSD (2 clause)
4195+
4196+Files: chromium/src/third_party/WebKit/JavaScriptCore/jit/*
4197+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4198+License: BSD (3 clause)
4199+
4200+Files: chromium/src/third_party/WebKit/JavaScriptCore/jit/*
4201+Copyright: Copyright: 2008, 2009 Apple Inc. All rights reserved / 2008 Cameron Zwarich <cwzwarich@uwaterloo.ca>:
4202+License: BSD (3 clause)
4203+
4204+Files: chromium/src/third_party/WebKit/JavaScriptCore/jit/{ExecutableAllocatorSymbian.cpp}
4205+Copyright: Copyright: 2009 Nokia Corporation and/or its subsidiary(-ies):
4206+License: LGPL (v2 or later)
4207+
4208+Files: chromium/src/third_party/WebKit/JavaScriptCore/os-win32/*
4209+Copyright: Copyright: 2005, 2006 Apple Computer, Inc:
4210+License: LGPL (v2 or later)
4211+
4212+Files: chromium/src/third_party/WebKit/JavaScriptCore/os-win32/*
4213+Copyright: Copyright: 2009 Patrick Gansterer (paroga@paroga.com):
4214+License: LGPL (v2 or later)
4215+
4216+Files: chromium/src/third_party/WebKit/JavaScriptCore/parser/*
4217+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4218+License: BSD (2 clause)
4219+
4220+Files: chromium/src/third_party/WebKit/JavaScriptCore/parser/*
4221+Copyright: Copyright: 2009 Apple Inc. All rights reserved:
4222+License: BSD (2 clause)
4223+
4224+Files: chromium/src/third_party/WebKit/JavaScriptCore/parser/*
4225+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4226+License: BSD (3 clause)
4227+
4228+Files: chromium/src/third_party/WebKit/JavaScriptCore/parser/*
4229+Copyright: Copyright: 2008, 2009 Apple Inc. All rights reserved:
4230+License: BSD (3 clause)
4231+
4232+Files: chromium/src/third_party/WebKit/JavaScriptCore/parser/{Lexer.h}
4233+Copyright: Copyright: 1999-2000 Harri Porten (porten@kde.org) / 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved:
4234+License: LGPL (v2 or later)
4235+
4236+Files: chromium/src/third_party/WebKit/JavaScriptCore/parser/{Parser.cpp,Parser.h}
4237+Copyright: Copyright: 2003, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 1999-2001 Harri Porten (porten@kde.org) / 2001 Peter Kelly (pmk@post.com):
4238+License: LGPL (v2 or later)
4239+
4240+Files: chromium/src/third_party/WebKit/JavaScriptCore/parser/{Lexer.cpp}
4241+Copyright: Copyright: 2006, 2007, 2008, 2009 Apple Inc. All Rights Reserved / 1999-2000 Harri Porten (porten@kde.org) / 2007 Cameron Zwarich (cwzwarich@uwaterloo.ca):
4242+License: LGPL (v2 or later)
4243+
4244+Files: chromium/src/third_party/WebKit/JavaScriptCore/parser/{NodeInfo.h}
4245+Copyright: Copyright: 2007 Apple Inc. All rights reserved:
4246+License: LGPL (v2 or later)
4247+
4248+Files: chromium/src/third_party/WebKit/JavaScriptCore/parser/{Nodes.h}
4249+Copyright: Copyright: 2007 Eric Seidel <eric@webkit.org> / 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org) / 2001 Peter Kelly (pmk@post.com) / 2007 Maks Orlovich / 2007 Cameron Zwarich (cwzwarich@uwaterloo.ca):
4250+License: LGPL (v2 or later)
4251+
4252+Files: chromium/src/third_party/WebKit/JavaScriptCore/parser/{Nodes.cpp}
4253+Copyright: Copyright: 2007 Eric Seidel <eric@webkit.org> / 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 2001 Peter Kelly (pmk@post.com) / 2007 Maks Orlovich / 1999-2002 Harri Porten (porten@kde.org) / 2007 Cameron Zwarich (cwzwarich@uwaterloo.ca):
4254+License: LGPL (v2 or later)
4255+
4256+Files: chromium/src/third_party/WebKit/JavaScriptCore/parser/{NodeConstructors.h}
4257+Copyright: Copyright: 2009 Apple Inc. All rights reserved:
4258+License: LGPL (v2 or later)
4259+
4260+Files: chromium/src/third_party/WebKit/JavaScriptCore/pcre/{ucptable.cpp}
4261+Copyright: UNKNOWN:
4262+License: BSD (2 clause)/LGPL 2 (or later)/LGPL 2.1 (or later)
4263+
4264+Files: chromium/src/third_party/WebKit/JavaScriptCore/pcre/{pcre.h}
4265+Copyright: Copyright: HOLDERS AND CONTRIBUTORS "AS IS" / OWNER OR CONTRIBUTORS BE / 1997-2005 University of Cambridge / 2002, 2004, 2006, 2007 Apple Inc. All rights reserved:
4266+License: BSD (3 clause)
4267+
4268+Files: chromium/src/third_party/WebKit/JavaScriptCore/pcre/{ucpinternal.h}
4269+Copyright: Copyright: HOLDERS AND CONTRIBUTORS "AS IS" / OWNER OR CONTRIBUTORS BE / 1997-2006 University of Cambridge / 2002, 2004, 2006, 2007 Apple Inc. All rights reserved:
4270+License: BSD (3 clause)
4271+
4272+Files: chromium/src/third_party/WebKit/JavaScriptCore/pcre/{pcre_internal.h,pcre_tables.cpp,pcre_ucp_searchfuncs.cpp,pcre_xclass.cpp}
4273+Copyright: Copyright: HOLDERS AND CONTRIBUTORS "AS IS" / OWNER OR CONTRIBUTORS BE / 1997-2006 University of Cambridge / 2002, 2004, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved:
4274+License: BSD (3 clause)
4275+
4276+Files: chromium/src/third_party/WebKit/JavaScriptCore/pcre/{pcre_compile.cpp,pcre_exec.cpp}
4277+Copyright: Copyright: HOLDERS AND CONTRIBUTORS "AS IS" / OWNER OR CONTRIBUTORS BE / 2007 Eric Seidel <eric@webkit.org> / 1997-2006 University of Cambridge / 2002, 2004, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved:
4278+License: BSD (3 clause)
4279+
4280+Files: chromium/src/third_party/WebKit/JavaScriptCore/profiler/{CallIdentifier.h,Profile.cpp,Profile.h,ProfileGenerator.cpp,ProfileGenerator.h,ProfilerServer.h}
4281+Copyright: Copyright: 2008 Apple Inc. All Rights Reserved:
4282+License: BSD (2 clause)
4283+
4284+Files: chromium/src/third_party/WebKit/JavaScriptCore/profiler/{ProfileNode.cpp,ProfileNode.h,Profiler.cpp,Profiler.h}
4285+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4286+License: BSD (3 clause)
4287+
4288+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{CallData.cpp,ConstructData.cpp,SmallStrings.cpp,Tracing.h}
4289+Copyright: Copyright: 2008 Apple Inc. All Rights Reserved:
4290+License: BSD (2 clause)
4291+
4292+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{BatchedTransitionOptimizer.h,JSTypeInfo.h,PutPropertySlot.h,StructureChain.cpp,StructureChain.h}
4293+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4294+License: BSD (2 clause)
4295+
4296+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSStaticScopeObject.cpp,JSStaticScopeObject.h,SmallStrings.h}
4297+Copyright: Copyright: 2008, 2009 Apple Inc. All Rights Reserved:
4298+License: BSD (2 clause)
4299+
4300+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{CollectorHeapIterator.h,Structure.cpp,Structure.h,StructureTransitionTable.h}
4301+Copyright: Copyright: 2008, 2009 Apple Inc. All rights reserved:
4302+License: BSD (2 clause)
4303+
4304+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{DateInstanceCache.h,JSByteArray.cpp,JSByteArray.h,NumericStrings.h}
4305+Copyright: Copyright: 2009 Apple Inc. All Rights Reserved:
4306+License: BSD (2 clause)
4307+
4308+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{Executable.cpp,Executable.h,JSONObject.cpp,JSONObject.h,JSZombie.cpp,JSZombie.h,LiteralParser.cpp,LiteralParser.h,MarkStack.cpp,MarkStack.h,MarkStackPosix.cpp,MarkStackWin.cpp,NativeFunctionWrapper.h,PropertyDescriptor.cpp,PropertyDescriptor.h,StringBuilder.h,UStringImpl.cpp,UStringImpl.h,WeakGCMap.h,WeakGCPtr.h}
4309+Copyright: Copyright: 2009 Apple Inc. All rights reserved:
4310+License: BSD (2 clause)
4311+
4312+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{WeakRandom.h}
4313+Copyright: Copyright: 2009 Apple Inc. All rights reserved / 2009 Ian C. Bullard:
4314+License: BSD (2 clause) MIT/X11 (BSD like)
4315+
4316+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSVariableObject.cpp,JSVariableObject.h,SymbolTable.h}
4317+Copyright: Copyright: 2007, 2008 Apple Inc. All rights reserved:
4318+License: BSD (3 clause)
4319+
4320+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSGlobalObject.cpp}
4321+Copyright: Copyright: 2007, 2008, 2009 Apple Inc. All rights reserved / 2008 Cameron Zwarich (cwzwarich@uwaterloo.ca):
4322+License: BSD (3 clause)
4323+
4324+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{CallData.h,ConstructData.h,ExceptionHelpers.h,InitializeThreading.cpp,InitializeThreading.h,JSGlobalData.cpp,TimeoutChecker.h}
4325+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4326+License: BSD (3 clause)
4327+
4328+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{ExceptionHelpers.cpp,JSActivation.cpp,JSActivation.h,JSGlobalData.h,JSNotAnObject.cpp,JSNotAnObject.h,JSPropertyNameIterator.cpp,JSPropertyNameIterator.h}
4329+Copyright: Copyright: 2008, 2009 Apple Inc. All rights reserved:
4330+License: BSD (3 clause)
4331+
4332+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{TimeoutChecker.cpp}
4333+Copyright: Copyright: 2008, 2009 Apple Inc. All rights reserved / 2008 Cameron Zwarich <cwzwarich@uwaterloo.ca>:
4334+License: BSD (3 clause)
4335+
4336+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSArray.h}
4337+Copyright: Copyright: 1999-2000 Harri Porten (porten@kde.org) / 2003, 2007, 2008, 2009 Apple Inc. All rights reserved:
4338+License: LGPL (v2 or later)
4339+
4340+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{BooleanConstructor.cpp,BooleanObject.cpp,BooleanPrototype.cpp,ErrorConstructor.cpp,ErrorInstance.cpp,ErrorPrototype.cpp,NativeErrorConstructor.cpp,NativeErrorPrototype.cpp}
4341+Copyright: Copyright: 1999-2000 Harri Porten (porten@kde.org) / 2003, 2008 Apple Inc. All rights reserved:
4342+License: LGPL (v2 or later)
4343+
4344+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{RegExp.h}
4345+Copyright: Copyright: 1999-2000 Harri Porten (porten@kde.org) / 2007, 2008, 2009 Apple Inc. All rights reserved / 2009 Torch Mobile, Inc:
4346+License: LGPL (v2 or later)
4347+
4348+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{ClassInfo.h,Error.h,JSString.h}
4349+Copyright: Copyright: 1999-2001 Harri Porten (porten@kde.org) / 2001 Peter Kelly (pmk@post.com) / 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved:
4350+License: LGPL (v2 or later)
4351+
4352+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSAPIValueWrapper.h,JSNumberCell.h}
4353+Copyright: Copyright: 1999-2001 Harri Porten (porten@kde.org) / 2001 Peter Kelly (pmk@post.com) / 2003, 2004, 2005, 2007, 2008 Apple Inc. All rights reserved:
4354+License: LGPL (v2 or later)
4355+
4356+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{FunctionConstructor.cpp}
4357+Copyright: Copyright: 1999-2001 Harri Porten (porten@kde.org) / 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved:
4358+License: LGPL (v2 or later)
4359+
4360+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{Error.cpp}
4361+Copyright: Copyright: 1999-2001 Harri Porten (porten@kde.org) / 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved / 2001 Peter Kelly (pmk@post.com) / 2007 Eric Seidel (eric@webkit.org):
4362+License: LGPL (v2 or later)
4363+
4364+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{ArgList.h}
4365+Copyright: Copyright: 1999-2001 Harri Porten (porten@kde.org) / 2003, 2007, 2008, 2009 Apple Inc. All rights reserved:
4366+License: LGPL (v2 or later)
4367+
4368+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{RegExp.cpp}
4369+Copyright: Copyright: 1999-2001, 2004 Harri Porten (porten@kde.org) / 2007, 2008 Apple Inc. All rights reserved / 2009 Torch Mobile, Inc:
4370+License: LGPL (v2 or later)
4371+
4372+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{PrototypeFunction.cpp}
4373+Copyright: Copyright: 2001 Peter Kelly (pmk@post.com) / 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved / 2007 Maks Orlovich / 1999-2002 Harri Porten (porten@kde.org) / 2007 Cameron Zwarich (cwzwarich@uwaterloo.ca):
4374+License: LGPL (v2 or later)
4375+
4376+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{Operations.h}
4377+Copyright: Copyright: 2002, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org):
4378+License: LGPL (v2 or later)
4379+
4380+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{ArrayPrototype.cpp,JSArray.cpp}
4381+Copyright: Copyright: 2003 Peter Kelly (pmk@post.com) / 2006 Alexey Proskuryakov (ap@nypop.com) / 1999-2000 Harri Porten (porten@kde.org) / 2003, 2007, 2008, 2009 Apple Inc. All rights reserved:
4382+License: LGPL (v2 or later)
4383+
4384+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{ArrayConstructor.cpp}
4385+Copyright: Copyright: 2003 Peter Kelly (pmk@post.com) / 2006 Alexey Proskuryakov (ap@nypop.com) / 2003, 2007, 2008 Apple Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org):
4386+License: LGPL (v2 or later)
4387+
4388+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{Identifier.cpp}
4389+Copyright: Copyright: 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved:
4390+License: LGPL (v2 or later)
4391+
4392+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{Collector.h}
4393+Copyright: Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org) / 2001 Peter Kelly (pmk@post.com):
4394+License: LGPL (v2 or later)
4395+
4396+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{FunctionPrototype.cpp}
4397+Copyright: Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 1999-2001 Harri Porten (porten@kde.org):
4398+License: LGPL (v2 or later)
4399+
4400+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{GetterSetter.h,JSObject.h}
4401+Copyright: Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 1999-2001 Harri Porten (porten@kde.org) / 2001 Peter Kelly (pmk@post.com):
4402+License: LGPL (v2 or later)
4403+
4404+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{Arguments.cpp,GlobalEvalFunction.cpp,JSFunction.cpp,JSGlobalObjectFunctions.cpp}
4405+Copyright: Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 2001 Peter Kelly (pmk@post.com) / 2007 Maks Orlovich / 1999-2002 Harri Porten (porten@kde.org) / 2007 Cameron Zwarich (cwzwarich@uwaterloo.ca):
4406+License: LGPL (v2 or later)
4407+
4408+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{ArgList.cpp}
4409+Copyright: Copyright: 2003, 2004, 2005, 2006, 2007, 2009 Apple Inc. All rights reserved:
4410+License: LGPL (v2 or later)
4411+
4412+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSObject.cpp}
4413+Copyright: Copyright: 2003, 2004, 2005, 2006, 2008, 2009 Apple Inc. All rights reserved / 1999-2001 Harri Porten (porten@kde.org) / 2001 Peter Kelly (pmk@post.com) / 2007 Eric Seidel (eric@webkit.org):
4414+License: LGPL (v2 or later)
4415+
4416+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSCell.h,JSValue.h}
4417+Copyright: Copyright: 2003, 2004, 2005, 2007, 2008, 2009 Apple Inc. All rights reserved / 1999-2001 Harri Porten (porten@kde.org) / 2001 Peter Kelly (pmk@post.com):
4418+License: LGPL (v2 or later)
4419+
4420+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{InternalFunction.h,PrototypeFunction.h}
4421+Copyright: Copyright: 2003, 2006, 2007, 2008 Apple Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org) / 2007 Maks Orlovich / 2007 Cameron Zwarich (cwzwarich@uwaterloo.ca):
4422+License: LGPL (v2 or later)
4423+
4424+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{Identifier.h}
4425+Copyright: Copyright: 2003, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved:
4426+License: LGPL (v2 or later)
4427+
4428+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{Arguments.h,GlobalEvalFunction.h,JSFunction.h,JSGlobalObjectFunctions.h}
4429+Copyright: Copyright: 2003, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org) / 2007 Maks Orlovich / 2007 Cameron Zwarich (cwzwarich@uwaterloo.ca):
4430+License: LGPL (v2 or later)
4431+
4432+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{ScopeChain.cpp}
4433+Copyright: Copyright: 2003, 2006, 2008 Apple Inc:
4434+License: LGPL (v2 or later)
4435+
4436+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{ScopeChainMark.h}
4437+Copyright: Copyright: 2003, 2006, 2008, 2009 Apple Inc. All rights reserved:
4438+License: LGPL (v2 or later)
4439+
4440+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{Completion.cpp}
4441+Copyright: Copyright: 2003, 2007 Apple Inc / 1999-2001 Harri Porten (porten@kde.org) / 2001 Peter Kelly (pmk@post.com):
4442+License: LGPL (v2 or later)
4443+
4444+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{Completion.h}
4445+Copyright: Copyright: 2003, 2007 Apple Inc. All rights reserved / 1999-2001 Harri Porten (porten@kde.org) / 2001 Peter Kelly (pmk@post.com):
4446+License: LGPL (v2 or later)
4447+
4448+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{RegExpConstructor.h,RegExpObject.cpp,RegExpObject.h,RegExpPrototype.cpp,RegExpPrototype.h}
4449+Copyright: Copyright: 2003, 2007, 2008 Apple Inc. All Rights Reserved / 1999-2000 Harri Porten (porten@kde.org):
4450+License: LGPL (v2 or later)
4451+
4452+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{RegExpConstructor.cpp}
4453+Copyright: Copyright: 2003, 2007, 2008 Apple Inc. All Rights Reserved / 1999-2000 Harri Porten (porten@kde.org) / 2009 Torch Mobile, Inc:
4454+License: LGPL (v2 or later)
4455+
4456+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSCell.cpp,JSValue.cpp}
4457+Copyright: Copyright: 2003, 2007, 2008 Apple Inc. All rights reserved / 1999-2001 Harri Porten (porten@kde.org) / 2001 Peter Kelly (pmk@post.com):
4458+License: LGPL (v2 or later)
4459+
4460+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{CommonIdentifiers.cpp,CommonIdentifiers.h}
4461+Copyright: Copyright: 2003, 2007, 2009 Apple Inc. All rights reserved:
4462+License: LGPL (v2 or later)
4463+
4464+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{ScopeChain.h}
4465+Copyright: Copyright: 2003, 2008, 2009 Apple Inc. All rights reserved:
4466+License: LGPL (v2 or later)
4467+
4468+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSImmediate.cpp}
4469+Copyright: Copyright: 2003-2006, 2008 Apple Inc. All rights reserved:
4470+License: LGPL (v2 or later)
4471+
4472+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{PropertyMapHashTable.h}
4473+Copyright: Copyright: 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved:
4474+License: LGPL (v2 or later)
4475+
4476+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{DateConstructor.cpp,DateInstance.cpp}
4477+Copyright: Copyright: 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org):
4478+License: LGPL (v2 or later)
4479+
4480+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{StringConstructor.cpp,StringObject.cpp}
4481+Copyright: Copyright: 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved / 1999-2001 Harri Porten (porten@kde.org):
4482+License: LGPL (v2 or later)
4483+
4484+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{StringPrototype.cpp}
4485+Copyright: Copyright: 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved / 1999-2001 Harri Porten (porten@kde.org) / 2009 Torch Mobile, Inc:
4486+License: LGPL (v2 or later)
4487+
4488+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{DatePrototype.cpp}
4489+Copyright: Copyright: 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved / 2008, 2009 Torch Mobile, Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org):
4490+License: LGPL (v2 or later)
4491+
4492+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{InternalFunction.cpp,JSAPIValueWrapper.cpp,JSNumberCell.cpp,JSString.cpp}
4493+Copyright: Copyright: 2004, 2007, 2008 Apple Inc. All rights reserved / 2001 Peter Kelly (pmk@post.com) / 1999-2002 Harri Porten (porten@kde.org):
4494+License: LGPL (v2 or later)
4495+
4496+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{GetterSetter.cpp}
4497+Copyright: Copyright: 2004, 2007, 2008, 2009 Apple Inc. All rights reserved / 2001 Peter Kelly (pmk@post.com) / 1999-2002 Harri Porten (porten@kde.org):
4498+License: LGPL (v2 or later)
4499+
4500+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{Protect.h}
4501+Copyright: Copyright: 2004, 2008, 2009 Apple Inc. All rights reserved:
4502+License: LGPL (v2 or later)
4503+
4504+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{PropertySlot.h}
4505+Copyright: Copyright: 2005, 2007, 2008 Apple Inc. All rights reserved:
4506+License: LGPL (v2 or later)
4507+
4508+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSLock.cpp,PropertySlot.cpp}
4509+Copyright: Copyright: 2005, 2008 Apple Inc. All rights reserved:
4510+License: LGPL (v2 or later)
4511+
4512+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSLock.h}
4513+Copyright: Copyright: 2005, 2008, 2009 Apple Inc. All rights reserved:
4514+License: LGPL (v2 or later)
4515+
4516+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSImmediate.h}
4517+Copyright: Copyright: 2006 Alexey Proskuryakov (ap@webkit.org) / 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved:
4518+License: LGPL (v2 or later)
4519+
4520+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSType.h}
4521+Copyright: Copyright: 2006, 2007, 2008, 2009 Apple Inc. All rights reserved:
4522+License: LGPL (v2 or later)
4523+
4524+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSWrapperObject.h}
4525+Copyright: Copyright: 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 2006 Maks Orlovich:
4526+License: LGPL (v2 or later)
4527+
4528+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{PropertyNameArray.cpp,PropertyNameArray.h}
4529+Copyright: Copyright: 2006, 2008 Apple Inc. All rights reserved:
4530+License: LGPL (v2 or later)
4531+
4532+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{FunctionConstructor.h,FunctionPrototype.h}
4533+Copyright: Copyright: 2006, 2008 Apple Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org):
4534+License: LGPL (v2 or later)
4535+
4536+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSWrapperObject.cpp}
4537+Copyright: Copyright: 2006, 2009 Apple, Inc / 2006 Maks Orlovich:
4538+License: LGPL (v2 or later)
4539+
4540+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{ArrayPrototype.h}
4541+Copyright: Copyright: 2007 Apple Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org):
4542+License: LGPL (v2 or later)
4543+
4544+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{Collector.cpp}
4545+Copyright: Copyright: 2007 Eric Seidel <eric@webkit.org> / 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved:
4546+License: LGPL (v2 or later)
4547+
4548+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{JSGlobalObject.h}
4549+Copyright: Copyright: 2007 Eric Seidel <eric@webkit.org> / 2007, 2008, 2009 Apple Inc. All rights reserved:
4550+License: LGPL (v2 or later)
4551+
4552+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{MathObject.cpp}
4553+Copyright: Copyright: 2007, 2008 Apple Inc. All Rights Reserved / 1999-2000 Harri Porten (porten@kde.org):
4554+License: LGPL (v2 or later)
4555+
4556+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{ArrayConstructor.h,StringConstructor.h,StringObject.h,StringObjectThatMasqueradesAsUndefined.h,StringPrototype.h}
4557+Copyright: Copyright: 2007, 2008 Apple Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org):
4558+License: LGPL (v2 or later)
4559+
4560+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{NumberConstructor.cpp,NumberObject.cpp,NumberPrototype.cpp}
4561+Copyright: Copyright: 2007, 2008 Apple Inc. All rights reserved / 1999-2000,2003 Harri Porten (porten@kde.org):
4562+License: LGPL (v2 or later)
4563+
4564+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{RegExpMatchesArray.h}
4565+Copyright: Copyright: 2008 Apple Inc. All Rights Reserved:
4566+License: LGPL (v2 or later)
4567+
4568+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{Operations.cpp}
4569+Copyright: Copyright: 2008 Apple Inc. All Rights Reserved / 1999-2000 Harri Porten (porten@kde.org):
4570+License: LGPL (v2 or later)
4571+
4572+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{Lookup.cpp}
4573+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4574+License: LGPL (v2 or later)
4575+
4576+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{BooleanConstructor.h,BooleanObject.h,BooleanPrototype.h,DateConstructor.h,DateInstance.h,DatePrototype.h,ErrorConstructor.h,ErrorInstance.h,ErrorPrototype.h,MathObject.h,NativeErrorConstructor.h,NativeErrorPrototype.h,NumberConstructor.h,NumberObject.h,NumberPrototype.h,ObjectConstructor.cpp,ObjectConstructor.h,ObjectPrototype.cpp,ObjectPrototype.h}
4577+Copyright: Copyright: 2008 Apple Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org):
4578+License: LGPL (v2 or later)
4579+
4580+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{UString.h}
4581+Copyright: Copyright: 2009 Google Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org) / 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved:
4582+License: LGPL (v2 or later)
4583+
4584+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{UString.cpp}
4585+Copyright: Copyright: 2009 Google Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org) / 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 2007 Cameron Zwarich (cwzwarich@uwaterloo.ca):
4586+License: LGPL (v2 or later)
4587+
4588+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{MarkStackSymbian.cpp}
4589+Copyright: Copyright: 2009 Nokia Corporation and/or its subsidiary(-ies):
4590+License: LGPL (v2 or later)
4591+
4592+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{Lookup.h}
4593+Copyright: Copyright: 2003, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org):
4594+License: LGPL (v2 or later) GENERATED FILE
4595+
4596+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{DateConversion.h}
4597+Copyright: Copyright: 2009 Google Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org) / 2006, 2007 Apple Inc. All rights reserved / 1998:
4598+License: MPL (v1.1) GPL (unversioned/unknown version)
4599+
4600+Files: chromium/src/third_party/WebKit/JavaScriptCore/runtime/{DateConversion.cpp}
4601+Copyright: Copyright: 2009 Google Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org) / 2006, 2007 Apple Inc. All rights reserved / 1998:
4602+License: MPL (v1.1,) GPL (unversioned/unknown version) LGPL (v2.1 or later)
4603+
4604+Files: chromium/src/third_party/WebKit/JavaScriptCore/tests/mozilla/{mkhtml.pl,runtests.pl}
4605+Copyright: UNKNOWN:
4606+License: BSD (2 clause)/LGPL 2 (or later)/LGPL 2.1 (or later)
4607+
4608+Files: chromium/src/third_party/WebKit/JavaScriptCore/tests/mozilla/{jsDriver.pl,mklistpage.pl}
4609+Copyright: Copyright: 1997-1999 Netscape Communications Corporation. All:
4610+License: GPL (unversioned/unknown version)
4611+
4612+Files: chromium/src/third_party/WebKit/JavaScriptCore/tests/mozilla/Getopt/{Mixed.pm}
4613+Copyright: Copyright: 1995 Christopher J. Madsen:
4614+License: GPL (with incorrect FSF address)
4615+
4616+Files: chromium/src/third_party/WebKit/JavaScriptCore/wrec/*
4617+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4618+License: BSD (2 clause)
4619+
4620+Files: chromium/src/third_party/WebKit/JavaScriptCore/wrec/*
4621+Copyright: Copyright: 2008, 2009 Apple Inc. All rights reserved:
4622+License: BSD (2 clause)
4623+
4624+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{Assertions.h}
4625+Copyright: Copyright: 2003, 2006, 2007 Apple Inc. All rights reserved:
4626+License: BSD (2 clause)
4627+
4628+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{StringExtras.h}
4629+Copyright: Copyright: 2006 Apple Inc. All rights reserved:
4630+License: BSD (2 clause)
4631+
4632+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{MathExtras.h}
4633+Copyright: Copyright: 2006, 2007, 2008 Apple Inc. All rights reserved:
4634+License: BSD (2 clause)
4635+
4636+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{Platform.h}
4637+Copyright: Copyright: 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 2007-2009 Torch Mobile, Inc:
4638+License: BSD (2 clause)
4639+
4640+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{HashIterators.h}
4641+Copyright: Copyright: 2007 Apple Inc. All rights reserved:
4642+License: BSD (2 clause)
4643+
4644+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{Assertions.cpp}
4645+Copyright: Copyright: 2007-2009 Torch Mobile, Inc / 2003, 2006, 2007 Apple Inc. All rights reserved:
4646+License: BSD (2 clause)
4647+
4648+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{NotFound.h,StdLibExtras.h}
4649+Copyright: Copyright: 2008 Apple Inc. All Rights Reserved:
4650+License: BSD (2 clause)
4651+
4652+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{RandomNumber.h,RandomNumberSeed.h}
4653+Copyright: Copyright: 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/):
4654+License: BSD (2 clause)
4655+
4656+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{Threading.cpp}
4657+Copyright: Copyright: 2008, 2009 Apple Inc. All rights reserved:
4658+License: BSD (2 clause)
4659+
4660+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{RandomNumber.cpp}
4661+Copyright: Copyright: 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/) / 2006, 2007, 2008 Apple Inc. All rights reserved:
4662+License: BSD (2 clause)
4663+
4664+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{OwnPtrWin.cpp}
4665+Copyright: Copyright: 2008, 2009 Torch Mobile, Inc / 2007 Apple Inc. All rights reserved:
4666+License: BSD (2 clause)
4667+
4668+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{ByteArray.cpp,ByteArray.h,PossiblyNull.h}
4669+Copyright: Copyright: 2009 Apple Inc. All Rights Reserved:
4670+License: BSD (2 clause)
4671+
4672+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{PassOwnPtr.h,VMTags.h}
4673+Copyright: Copyright: 2009 Apple Inc. All rights reserved:
4674+License: BSD (2 clause)
4675+
4676+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{OwnPtrCommon.h}
4677+Copyright: Copyright: 2009 Apple Inc. All rights reserved / 2009 Torch Mobile, Inc:
4678+License: BSD (2 clause)
4679+
4680+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{StringExtras.cpp}
4681+Copyright: Copyright: 2009 Company 100, Inc. All rights reserved:
4682+License: BSD (2 clause)
4683+
4684+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{dtoa.cpp}
4685+Copyright: Copyright: 1991, 2000, 2001 by Lucent Technologies / 2002, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved:
4686+License: BSD (2 clause)/LGPL 2 (or later)/LGPL 2.1 (or later)
4687+
4688+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{FastMalloc.cpp}
4689+Copyright: Copyright: 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 2005, 2007, Google Inc / HOLDERS AND CONTRIBUTORS:
4690+License: BSD (3 clause)
4691+
4692+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{TCSystemAlloc.cpp,TCSystemAlloc.h}
4693+Copyright: Copyright: 2005, 2007, Google Inc / HOLDERS AND CONTRIBUTORS:
4694+License: BSD (3 clause)
4695+
4696+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{DisallowCType.h,MallocZoneSupport.h}
4697+Copyright: Copyright: 2007 Apple Inc. All rights reserved:
4698+License: BSD (3 clause)
4699+
4700+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{ThreadingNone.cpp}
4701+Copyright: Copyright: 2007 Apple Inc. All rights reserved / 2007 Justin Haygood (jhaygood@reaktix.com):
4702+License: BSD (3 clause)
4703+
4704+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{ThreadingPthreads.cpp}
4705+Copyright: Copyright: 2007 Justin Haygood (jhaygood@reaktix.com) / 2007, 2009 Apple Inc. All rights reserved:
4706+License: BSD (3 clause)
4707+
4708+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{MainThread.cpp}
4709+Copyright: Copyright: 2007, 2008 Apple Inc. All rights reserved:
4710+License: BSD (3 clause)
4711+
4712+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{MainThread.h}
4713+Copyright: Copyright: 2007, 2008 Apple Inc. All rights reserved / 2007 Justin Haygood (jhaygood@reaktix.com):
4714+License: BSD (3 clause)
4715+
4716+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{ASCIICType.h}
4717+Copyright: Copyright: 2007, 2008, 2009 Apple Inc. All rights reserved:
4718+License: BSD (3 clause)
4719+
4720+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{AVLTree.h,Locker.h,SegmentedVector.h}
4721+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4722+License: BSD (3 clause)
4723+
4724+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{ThreadSpecific.h}
4725+Copyright: Copyright: 2008 Apple Inc. All rights reserved / 2009 Jian Li <jianli@chromium.org>:
4726+License: BSD (3 clause)
4727+
4728+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{FastAllocBase.h}
4729+Copyright: Copyright: 2008, 2009 Paul Pedriana <ppedriana@ea.com>. All rights reserved:
4730+License: BSD (3 clause)
4731+
4732+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{Deque.h}
4733+Copyright: Copyright: 2009 Google Inc. All rights reserved / 2007, 2008 Apple Inc. All rights reserved:
4734+License: BSD (3 clause)
4735+
4736+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{ThreadingWin.cpp}
4737+Copyright: Copyright: 2009 Google Inc. All rights reserved / 2007, 2008 Apple Inc. All rights reserved / 1998 John E. Bossom / 2009 Torch Mobile, Inc. All rights reserved / 1999,2005 Pthreads-win32 contributors:
4738+License: BSD (3 clause)
4739+
4740+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{MessageQueue.h}
4741+Copyright: Copyright: 2009 Google Inc. All rights reserved / 2008 Apple Inc. All rights reserved:
4742+License: BSD (3 clause)
4743+
4744+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{CrossThreadRefCounted.h,PtrAndFlags.h}
4745+Copyright: Copyright: 2009 Google Inc. All rights reserved / HOLDERS AND CONTRIBUTORS:
4746+License: BSD (3 clause)
4747+
4748+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{TCSpinLock.h}
4749+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2005, 2006, Google Inc:
4750+License: BSD (3 clause)
4751+
4752+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{TCPageMap.h}
4753+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2005, Google Inc:
4754+License: BSD (3 clause)
4755+
4756+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{CurrentTime.h}
4757+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2006 Apple Computer, Inc. All rights reserved / 2008 Google Inc. All rights reserved:
4758+License: BSD (3 clause)
4759+
4760+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{TCPackedCache.h}
4761+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2007, Google Inc:
4762+License: BSD (3 clause)
4763+
4764+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{CurrentTime.cpp}
4765+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 2007-2009 Torch Mobile, Inc / 2006 Apple Computer, Inc. All rights reserved / 2008 Google Inc. All rights reserved:
4766+License: BSD (3 clause)
4767+
4768+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{Threading.h}
4769+Copyright: Copyright: 2007, 2008 Apple Inc. All rights reserved / 2007 Justin Haygood (jhaygood@reaktix.com) / notices in the Software and this entire statement, including / HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE:
4770+License: BSL (v1) BSD (3 clause) GENERATED FILE
4771+
4772+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{dtoa.h}
4773+Copyright: Copyright: 2003, 2008 Apple Inc. All rights reserved:
4774+License: LGPL (v2 or later)
4775+
4776+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{HashTable.cpp}
4777+Copyright: Copyright: 2005 Apple Inc. All rights reserved:
4778+License: LGPL (v2 or later)
4779+
4780+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{PassRefPtr.h}
4781+Copyright: Copyright: 2005, 2006, 2007 Apple Inc. All rights reserved:
4782+License: LGPL (v2 or later)
4783+
4784+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{HashMap.h,HashSet.h,HashTraits.h,ListHashSet.h,RefPtr.h,RefPtrHashMap.h,RetainPtr.h,Vector.h}
4785+Copyright: Copyright: 2005, 2006, 2007, 2008 Apple Inc. All rights reserved:
4786+License: LGPL (v2 or later)
4787+
4788+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{HashTable.h}
4789+Copyright: Copyright: 2005, 2006, 2007, 2008 Apple Inc. All rights reserved / 2008 David Levin <levin@chromium.org>:
4790+License: LGPL (v2 or later)
4791+
4792+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{FastMalloc.h}
4793+Copyright: Copyright: 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved:
4794+License: LGPL (v2 or later)
4795+
4796+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{HashCountedSet.h,HashFunctions.h,ListRefPtr.h}
4797+Copyright: Copyright: 2005, 2006, 2008 Apple Inc. All rights reserved:
4798+License: LGPL (v2 or later)
4799+
4800+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{StringHashFunctions.h}
4801+Copyright: Copyright: 2005, 2006, 2008, 2010 Apple Inc. All rights reserved:
4802+License: LGPL (v2 or later)
4803+
4804+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{AlwaysInline.h}
4805+Copyright: Copyright: 2005, 2007, 2008 Apple Inc. All rights reserved:
4806+License: LGPL (v2 or later)
4807+
4808+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{GetPtr.h,Noncopyable.h,OwnArrayPtr.h,UnusedParam.h}
4809+Copyright: Copyright: 2006 Apple Computer, Inc:
4810+License: LGPL (v2 or later)
4811+
4812+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{VectorTraits.h}
4813+Copyright: Copyright: 2006, 2007, 2008 Apple Inc. All rights reserved:
4814+License: LGPL (v2 or later)
4815+
4816+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{OwnPtr.h}
4817+Copyright: Copyright: 2006, 2007, 2008, 2009 Apple Inc. All rights reserved:
4818+License: LGPL (v2 or later)
4819+
4820+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{Forward.h}
4821+Copyright: Copyright: 2006, 2009 Apple Inc. All rights reserved:
4822+License: LGPL (v2 or later)
4823+
4824+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{RefCountedLeakCounter.cpp,RefCountedLeakCounter.h}
4825+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4826+License: LGPL (v2 or later)
4827+
4828+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{OwnFastMallocPtr.h}
4829+Copyright: Copyright: 2009 Google Inc. All rights reserved / 2006, 2007 Apple Inc. All rights reserved:
4830+License: LGPL (v2 or later)
4831+
4832+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{ThreadSpecificWin.cpp}
4833+Copyright: Copyright: 2009 Jian Li <jianli@chromium.org>:
4834+License: LGPL (v2 or later)
4835+
4836+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{TypeTraits.cpp,TypeTraits.h}
4837+Copyright: Copyright: 2009, 2010 Google Inc. All rights reserved / 2006, 2007, 2008 Apple Inc. All rights reserved:
4838+License: LGPL (v2 or later)
4839+
4840+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{RefCounted.h}
4841+Copyright: Copyright: 2006, 2007, 2008 Apple Inc. All rights reserved:
4842+License: LGPL (v2 or later) GENERATED FILE
4843+
4844+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{DateMath.h}
4845+Copyright: Copyright: 2009 Google Inc. All rights reserved / 1999-2000 Harri Porten (porten@kde.org) / 2006, 2007 Apple Inc. All rights reserved / 1998:
4846+License: MPL (v1.1) GPL (unversioned/unknown version)
4847+
4848+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/{DateMath.cpp}
4849+Copyright: Copyright: 2009 Google Inc. All rights reserved / HOLDERS AND CONTRIBUTORS / 2006-2008 the V8 project authors. All rights reserved / 2007-2009 Torch Mobile, Inc / 1999-2000 Harri Porten (porten@kde.org) / 2006, 2007 Apple Inc. All rights reserved / 1998:
4850+License: MPL (v1.1,) BSD (3 clause) GPL (unversioned/unknown version) LGPL (v2.1 or later)
4851+
4852+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/android/{AndroidThreading.h,MainThreadAndroid.cpp}
4853+Copyright: Copyright: HOLDERS ``AS IS'' AND ANY / OWNER OR / 2009, The Android Open Source Project:
4854+License: BSD (2 clause)
4855+
4856+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/chromium/{ChromiumThreading.h,MainThreadChromium.cpp}
4857+Copyright: Copyright: 2009 Google Inc. All rights reserved / HOLDERS AND CONTRIBUTORS:
4858+License: BSD (3 clause)
4859+
4860+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/gtk/{MainThreadGtk.cpp,ThreadingGtk.cpp}
4861+Copyright: Copyright: 2007, 2008 Apple Inc. All rights reserved / 2007 Justin Haygood (jhaygood@reaktix.com):
4862+License: BSD (3 clause)
4863+
4864+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/gtk/{GRefPtr.h}
4865+Copyright: Copyright: 2005, 2006, 2007, 2008 Apple Inc. All rights reserved / 2008 Collabora Ltd / 2009 Martin Robinson:
4866+License: LGPL (v2 or later)
4867+
4868+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/gtk/{GOwnPtr.cpp}
4869+Copyright: Copyright: 2008 Collabora Ltd:
4870+License: LGPL (v2 or later)
4871+
4872+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/gtk/{GOwnPtr.h}
4873+Copyright: Copyright: 2008 Collabora Ltd / 2006, 2007 Apple Inc. All rights reserved:
4874+License: LGPL (v2 or later)
4875+
4876+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/gtk/{GRefPtr.cpp}
4877+Copyright: Copyright: 2009 Martin Robinson:
4878+License: LGPL (v2 or later)
4879+
4880+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/haiku/{MainThreadHaiku.cpp}
4881+Copyright: Copyright: 2009 Maxime Simon / 2007 Kevin Ollivier:
4882+License: BSD (3 clause)
4883+
4884+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/qt/*
4885+Copyright: Copyright: 2007 Apple Inc. All rights reserved / 2007 Justin Haygood (jhaygood@reaktix.com):
4886+License: BSD (3 clause)
4887+
4888+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/qt/*
4889+Copyright: Copyright: 2007 Staikos Computing Services Inc / 2008 Apple Inc. All rights reserved / 2008 Nokia Corporation and/or its subsidiary(-ies):
4890+License: BSD (3 clause)
4891+
4892+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/unicode/{UTF8.cpp,UTF8.h}
4893+Copyright: Copyright: 2007 Apple Inc. All rights reserved:
4894+License: BSD (2 clause)
4895+
4896+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/unicode/{Collator.h,CollatorDefault.cpp}
4897+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4898+License: BSD (3 clause)
4899+
4900+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/unicode/{Unicode.h}
4901+Copyright: Copyright: 2006, 2008, 2009 Apple Inc. All rights reserved / 2006 George Staikos <staikos@kde.org> / 2007-2009 Torch Mobile, Inc:
4902+License: LGPL (v2 or later)
4903+
4904+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/unicode/glib/{UnicodeMacrosFromICU.h}
4905+Copyright: Copyright: !U_IS_SURROGATE / ((&0xfffff800)==0xd800) / 2007 Apple Computer, Inc. All rights reserved / 2008 Jürg Billeter <j@bitron.ch> / U_IS_SURROGATE / ((&0xfffffc00)==0xdc00) / ((&0xfffffc00)==0xd800) / 2006 George Staikos <staikos@kde.org> / ((&0x400)==0) / 2006 Alexey Proskuryakov <ap@nypop.com> / 2008 Dominik Röttsches <dominik.roettsches@access-company.com>:
4906+License: LGPL (v2 or later)
4907+
4908+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/unicode/glib/{UnicodeGLib.h}
4909+Copyright: Copyright: 2007 Apple Computer, Inc. All rights reserved / 2008 Jürg Billeter <j@bitron.ch> / 2006 George Staikos <staikos@kde.org> / 2006 Alexey Proskuryakov <ap@nypop.com> / 2008 Dominik Röttsches <dominik.roettsches@access-company.com>:
4910+License: LGPL (v2 or later)
4911+
4912+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/unicode/glib/{UnicodeGLib.cpp}
4913+Copyright: Copyright: 2008 Jürg Billeter <j@bitron.ch> / 2008 Dominik Röttsches <dominik.roettsches@access-company.com>:
4914+License: LGPL (v2 or later)
4915+
4916+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/unicode/icu/{CollatorICU.cpp}
4917+Copyright: Copyright: 2008 Apple Inc. All rights reserved:
4918+License: BSD (3 clause)
4919+
4920+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/unicode/icu/{UnicodeIcu.h}
4921+Copyright: Copyright: 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 2006 George Staikos <staikos@kde.org> / 2006 Alexey Proskuryakov <ap@nypop.com>:
4922+License: LGPL (v2 or later)
4923+
4924+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/unicode/qt4/{UnicodeQt4.h}
4925+Copyright: Copyright: 2006, 2007, 2008, 2009 Apple Inc. All rights reserved / 2006 George Staikos <staikos@kde.org> / 2006 Alexey Proskuryakov <ap@nypop.com>:
4926+License: LGPL (v2 or later)
4927+
4928+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/unicode/wince/*
4929+Copyright: Copyright: (( & 0xfffffc00) == 0xdc00) / 2007 Apple Computer, Inc. All rights reserved / = U16_GET_SUPPLEMENTARY(, __c2); \ / U_IS_SURROGATE / (( & 0x400) == 0) / 2006 George Staikos <staikos@kde.org> / 2007-2009 Torch Mobile, Inc / (( & 0xfffffc00) == 0xd800) / 2006 Alexey Proskuryakov <ap@nypop.com> / (( & 0xfffff800) == 0xd800):
4930+License: LGPL (v2 or later)
4931+
4932+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/unicode/wince/*
4933+Copyright: Copyright: 2006 George Staikos <staikos@kde.org> / 2007-2009 Torch Mobile, Inc / 2006 Alexey Proskuryakov <ap@nypop.com>:
4934+License: LGPL (v2 or later)
4935+
4936+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/win/{MainThreadWin.cpp}
4937+Copyright: Copyright: 2009 Torch Mobile Inc. All rights reserved / 2007, 2008 Apple Inc. All rights reserved:
4938+License: BSD (3 clause)
4939+
4940+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/wince/{mt19937ar.c}
4941+Copyright: Copyright: HOLDERS AND CONTRIBUTORS / 1997 - 2002, Makoto Matsumoto and Takuji Nishimura / OWNER OR:
4942+License: BSD (2 clause)
4943+
4944+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/wince/*
4945+Copyright: Copyright: 2005, 2006, 2007, 2008 Apple Inc. All rights reserved / 2007-2009 Torch Mobile, Inc. All rights reserved:
4946+License: LGPL (v2 or later)
4947+
4948+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/wince/*
4949+Copyright: Copyright: 2008-2009 Torch Mobile Inc:
4950+License: LGPL (v2 or later)
4951+
4952+Files: chromium/src/third_party/WebKit/JavaScriptCore/wtf/wx/{MainThreadWx.cpp}
4953+Copyright: Copyright: 2007 Kevin Ollivier:
4954+License: BSD (3 clause)
4955+
4956+Files: chromium/src/third_party/WebKit/JavaScriptCore/yarr/{RegexCompiler.cpp,RegexCompiler.h,RegexInterpreter.cpp,RegexInterpreter.h,RegexJIT.cpp,RegexJIT.h,RegexParser.h,RegexPattern.h}
4957+Copyright: Copyright: 2009 Apple Inc. All rights reserved:
4958+License: BSD (2 clause)
4959+
4960+Files: chromium/src/third_party/WebKit/WebCore/{make-generated-sources.sh,move-js-headers.sh}
4961+Copyright: UNKNOWN:
4962+License: *No copyright* UNKNOWN
4963+
4964+Files: chromium/src/third_party/WebKit/WebCore/*
4965+Copyright: Copyright: 2007 Apple Inc. All rights reserved:
4966+License: BSD (2 clause)
4967+
4968+Files: chromium/src/third_party/WebKit/WebCore/*
4969+Copyright: Copyright: 2008 Apple Inc. All Rights Reserved:
4970+License: BSD (2 clause)
4971+
4972+Files: chromium/src/third_party/WebKit/WebCore/*
4973+Copyright: Copyright: 2004, 2005, 2006, 2007 Apple Inc:
4974+License: LGPL (v2 or later)
4975+
4976+Files: chromium/src/third_party/WebKit/WebCore/*
4977+Copyright: Copyright: 2009 Google Inc. All rights reserved / 2004, 2005, 2006 Apple Inc:
4978+License: LGPL (v2 or later)
4979+
4980+Files: chromium/src/third_party/WebKit/WebCore/ForwardingHeaders/debugger/{Debugger.h,DebuggerActivation.h,DebuggerCallFrame.h}
4981+Copyright: UNKNOWN:
4982+License: ZERO-CODE-FILES or GENERATED
4983+
4984+Files: chromium/src/third_party/WebKit/WebCore/ForwardingHeaders/interpreter/{CallFrame.h,Interpreter.h}
4985+Copyright: UNKNOWN:
4986+License: ZERO-CODE-FILES or GENERATED
4987+
4988+Files: chromium/src/third_party/WebKit/WebCore/ForwardingHeaders/jit/{JITCode.h}
4989+Copyright: UNKNOWN:
4990+License: ZERO-CODE-FILES or GENERATED
4991+
4992+Files: chromium/src/third_party/WebKit/WebCore/ForwardingHeaders/masm/{X86Assembler.h}
4993+Copyright: UNKNOWN:
4994+License: ZERO-CODE-FILES or GENERATED
4995+
4996+Files: chromium/src/third_party/WebKit/WebCore/ForwardingHeaders/parser/{SourceCode.h,SourceProvider.h}
4997+Copyright: UNKNOWN:
4998+License: ZERO-CODE-FILES or GENERATED
4999+
5000+Files: chromium/src/third_party/WebKit/WebCore/ForwardingHeaders/pcre/{pcre.h}
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: