Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(865)

Side by Side Diff: Source/build/scripts/make_names.pl

Issue 26414004: Move core/scripts to build/scripts so that platform can use them. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/perl -w 1 #!/usr/bin/perl -w
2 2
3 # Copyright (C) 2005, 2006, 2007, 2009 Apple Inc. All rights reserved. 3 # Copyright (C) 2005, 2006, 2007, 2009 Apple Inc. All rights reserved.
4 # Copyright (C) 2009, Julien Chaffraix <jchaffraix@webkit.org> 4 # Copyright (C) 2009, Julien Chaffraix <jchaffraix@webkit.org>
5 # Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmob ile.com/) 5 # Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmob ile.com/)
6 # Copyright (C) 2011 Ericsson AB. All rights reserved. 6 # Copyright (C) 2011 Ericsson AB. All rights reserved.
7 # 7 #
8 # Redistribution and use in source and binary forms, with or without 8 # Redistribution and use in source and binary forms, with or without
9 # modification, are permitted provided that the following conditions 9 # modification, are permitted provided that the following conditions
10 # are met: 10 # are met:
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 526
527 "; 527 ";
528 } 528 }
529 529
530 sub printLicenseHeader 530 sub printLicenseHeader
531 { 531 {
532 my $F = shift; 532 my $F = shift;
533 print F "/* 533 print F "/*
534 * THIS FILE WAS AUTOMATICALLY GENERATED, DO NOT EDIT. 534 * THIS FILE WAS AUTOMATICALLY GENERATED, DO NOT EDIT.
535 * 535 *
536 * This file was generated by the core/scripts/make_names.pl script. 536 * This file was generated by the build/scripts/make_names.pl script.
537 * 537 *
538 * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 538 * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
539 * 539 *
540 * Redistribution and use in source and binary forms, with or without 540 * Redistribution and use in source and binary forms, with or without
541 * modification, are permitted provided that the following conditions 541 * modification, are permitted provided that the following conditions
542 * are met: 542 * are met:
543 * 1. Redistributions of source code must retain the above copyright 543 * 1. Redistributions of source code must retain the above copyright
544 * notice, this list of conditions and the following disclaimer. 544 * notice, this list of conditions and the following disclaimer.
545 * 2. Redistributions in binary form must reproduce the above copyright 545 * 2. Redistributions in binary form must reproduce the above copyright
546 * notice, this list of conditions and the following disclaimer in the 546 * notice, this list of conditions and the following disclaimer in the
(...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after
1275 print F StaticString::GenerateStringImpls(\%parameters); 1275 print F StaticString::GenerateStringImpls(\%parameters);
1276 1276
1277 while ( my ($name, $identifier) = each %parameters ) { 1277 while ( my ($name, $identifier) = each %parameters ) {
1278 print F " new ((void*)&$name) AtomicString(${name}Impl);\n"; 1278 print F " new ((void*)&$name) AtomicString(${name}Impl);\n";
1279 } 1279 }
1280 1280
1281 print F "}\n}\n}\n"; 1281 print F "}\n}\n}\n";
1282 close F; 1282 close F;
1283 exit 0; 1283 exit 0;
1284 } 1284 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698