1*2835e6bbSSorin Basca// ASM: a very small and fast Java bytecode manipulation framework 2*2835e6bbSSorin Basca// Copyright (c) 2000-2011 INRIA, France Telecom 3*2835e6bbSSorin Basca// All rights reserved. 4*2835e6bbSSorin Basca// 5*2835e6bbSSorin Basca// Redistribution and use in source and binary forms, with or without 6*2835e6bbSSorin Basca// modification, are permitted provided that the following conditions 7*2835e6bbSSorin Basca// are met: 8*2835e6bbSSorin Basca// 1. Redistributions of source code must retain the above copyright 9*2835e6bbSSorin Basca// notice, this list of conditions and the following disclaimer. 10*2835e6bbSSorin Basca// 2. Redistributions in binary form must reproduce the above copyright 11*2835e6bbSSorin Basca// notice, this list of conditions and the following disclaimer in the 12*2835e6bbSSorin Basca// documentation and/or other materials provided with the distribution. 13*2835e6bbSSorin Basca// 3. Neither the name of the copyright holders nor the names of its 14*2835e6bbSSorin Basca// contributors may be used to endorse or promote products derived from 15*2835e6bbSSorin Basca// this software without specific prior written permission. 16*2835e6bbSSorin Basca// 17*2835e6bbSSorin Basca// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 18*2835e6bbSSorin Basca// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19*2835e6bbSSorin Basca// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20*2835e6bbSSorin Basca// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 21*2835e6bbSSorin Basca// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 22*2835e6bbSSorin Basca// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 23*2835e6bbSSorin Basca// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 24*2835e6bbSSorin Basca// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 25*2835e6bbSSorin Basca// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 26*2835e6bbSSorin Basca// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 27*2835e6bbSSorin Basca// THE POSSIBILITY OF SUCH DAMAGE. 28*2835e6bbSSorin Basca 29*2835e6bbSSorin BascarootProject.name = 'root' 30*2835e6bbSSorin Basca 31*2835e6bbSSorin Bascainclude( 32*2835e6bbSSorin Basca 'asm', 33*2835e6bbSSorin Basca 'asm-analysis', 34*2835e6bbSSorin Basca 'asm-commons', 35*2835e6bbSSorin Basca 'asm-test', 36*2835e6bbSSorin Basca 'asm-tree', 37*2835e6bbSSorin Basca 'asm-util', 38*2835e6bbSSorin Basca 'benchmarks', 39*2835e6bbSSorin Basca 'tools:retrofitter') 40*2835e6bbSSorin Basca 41