Re: [android-building] Building Android.bp

2019-07-18 Thread 'Dan Willemsen' via Android Building
Android.bp files must have all of their dependencies in Android.bp as well.
There is no way to work around that.

- Dan

On Thu, Jul 18, 2019 at 7:37 AM Amit Agrawal  wrote:

> So In Android P, It supports both .bp as well as .mk. What if I want to
> compile a module which is in .bp format but it depends on some other module
> which is written in .mk format? Is there anyway that we ignore the
> dependencies?
>
> On Saturday, March 2, 2019 at 3:28:41 AM UTC+5:30, Dan Willemsen wrote:
>>
>> No, Nougat does not support building with Android.bp files. Oreo and
>> later support both Android.mk and Android.bp files (though Android.bp files
>> largely cannot reference Android.mk files, so all your dependencies need to
>> be converted to Android.bp first).
>>
>> - Dan
>>
>> On Fri, Mar 1, 2019 at 8:34 AM Amit Agrawal  wrote:
>>
>>> Hello,
>>> I am new to AOSP. As far as I know we were using 'Make build system' in
>>> nougat which were building Android.mk files. And from Oreo onwards Soong is
>>> used for Android.bp.
>>> Is there any way by which I can build the Android.bp files in nougat
>>> using the 'Make build system'?
>>>
>>> Thanks and Regards,
>>> Amit Agrawal
>>>
>>> --
>>> --
>>> You received this message because you are subscribed to the "Android
>>> Building" mailing list.
>>> To post to this group, send email to android-...@googlegroups.com
>>> To unsubscribe from this group, send email to
>>> android-...@googlegroups.com
>>> For more options, visit this group at
>>> http://groups.google.com/group/android-building?hl=en
>>>
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "Android Building" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to android-...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
> --
> You received this message because you are subscribed to the "Android
> Building" mailing list.
> To post to this group, send email to android-building@googlegroups.com
> To unsubscribe from this group, send email to
> android-building+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-building?hl=en
>
> ---
> You received this message because you are subscribed to the Google Groups
> "Android Building" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-building+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-building/96c8d988-c0bb-47a0-8d5a-9b2a0edf4872%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
-- 
You received this message because you are subscribed to the "Android Building" 
mailing list.
To post to this group, send email to android-building@googlegroups.com
To unsubscribe from this group, send email to
android-building+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-building?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Android Building" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-building+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-building/CALQgHdmXVwmKkF1j5LxKhuBAFzBzVQM7JAn%2BboODu%2BRLh9wW8A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-building] Building Android.bp

2019-07-18 Thread Amit Agrawal
So In Android P, It supports both .bp as well as .mk. What if I want to 
compile a module which is in .bp format but it depends on some other module 
which is written in .mk format? Is there anyway that we ignore the 
dependencies?

On Saturday, March 2, 2019 at 3:28:41 AM UTC+5:30, Dan Willemsen wrote:
>
> No, Nougat does not support building with Android.bp files. Oreo and later 
> support both Android.mk and Android.bp files (though Android.bp files 
> largely cannot reference Android.mk files, so all your dependencies need to 
> be converted to Android.bp first).
>
> - Dan
>
> On Fri, Mar 1, 2019 at 8:34 AM Amit Agrawal  > wrote:
>
>> Hello,
>> I am new to AOSP. As far as I know we were using 'Make build system' in 
>> nougat which were building Android.mk files. And from Oreo onwards Soong is 
>> used for Android.bp.
>> Is there any way by which I can build the Android.bp files in nougat 
>> using the 'Make build system'?
>>
>> Thanks and Regards,
>> Amit Agrawal
>>
>> -- 
>> -- 
>> You received this message because you are subscribed to the "Android 
>> Building" mailing list.
>> To post to this group, send email to android-...@googlegroups.com 
>> 
>> To unsubscribe from this group, send email to
>> android-...@googlegroups.com 
>> For more options, visit this group at
>> http://groups.google.com/group/android-building?hl=en
>>
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "Android Building" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to android-...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
-- 
You received this message because you are subscribed to the "Android Building" 
mailing list.
To post to this group, send email to android-building@googlegroups.com
To unsubscribe from this group, send email to
android-building+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-building?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Android Building" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-building+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-building/96c8d988-c0bb-47a0-8d5a-9b2a0edf4872%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-building] Building Android.bp

2019-03-01 Thread 'Dan Willemsen' via Android Building
No, Nougat does not support building with Android.bp files. Oreo and later
support both Android.mk and Android.bp files (though Android.bp files
largely cannot reference Android.mk files, so all your dependencies need to
be converted to Android.bp first).

- Dan

On Fri, Mar 1, 2019 at 8:34 AM Amit Agrawal  wrote:

> Hello,
> I am new to AOSP. As far as I know we were using 'Make build system' in
> nougat which were building Android.mk files. And from Oreo onwards Soong is
> used for Android.bp.
> Is there any way by which I can build the Android.bp files in nougat using
> the 'Make build system'?
>
> Thanks and Regards,
> Amit Agrawal
>
> --
> --
> You received this message because you are subscribed to the "Android
> Building" mailing list.
> To post to this group, send email to android-building@googlegroups.com
> To unsubscribe from this group, send email to
> android-building+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-building?hl=en
>
> ---
> You received this message because you are subscribed to the Google Groups
> "Android Building" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-building+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
-- 
You received this message because you are subscribed to the "Android Building" 
mailing list.
To post to this group, send email to android-building@googlegroups.com
To unsubscribe from this group, send email to
android-building+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-building?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Android Building" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-building+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-building] Building Android.bp

2019-03-01 Thread Amit Agrawal
Hello,
I am new to AOSP. As far as I know we were using 'Make build system' in
nougat which were building Android.mk files. And from Oreo onwards Soong is
used for Android.bp.
Is there any way by which I can build the Android.bp files in nougat using
the 'Make build system'?

Thanks and Regards,
Amit Agrawal

-- 
-- 
You received this message because you are subscribed to the "Android Building" 
mailing list.
To post to this group, send email to android-building@googlegroups.com
To unsubscribe from this group, send email to
android-building+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-building?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Android Building" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-building+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.