forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Separate builds for profiles #67
Merged
bbrto21
merged 19 commits into
flutter-tizen:flutter-2.0.1-tizen
from
swift-kim:embedders-for-profiles
Apr 27, 2021
Merged
Changes from 17 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
42b9041
Separate binaries
swift-kim b8251fa
Clean up the build script
swift-kim 19b8bb8
Use templates
swift-kim 0de970f
Use __dlog_print() only on TV
swift-kim 00bf7ac
Copy headers and icudata
swift-kim 30223bc
Partially update azure-pipelines.yml
swift-kim 4a4181a
Temporarily unsupport Tizen 4.0 and use only ecore_wl2
swift-kim b12b8d4
Cherry-pick "Enable Evas GL direct mode (#54)"
swift-kim 217caf3
Fix CI build
swift-kim 6d44714
Disable Evas GL direct mode and remove use of elm_win_aux_hint_add
swift-kim 6cfaab9
Simplify the CI job
swift-kim 26f4fa5
A workaround for isIME in Evas GL mode
swift-kim d2ec02f
Refactor: Clean up tizen_renderer.h and re-order functions
swift-kim 2210172
Refactor: Rename GetEcoreWindowId and change its return type to uintp…
swift-kim 66fcc5f
Refactor: Make GetImageHandle() Evas GL-only
swift-kim ba4c936
Refactor: Additional clean ups
swift-kim 97ef634
Initialize members properly
swift-kim f4c250f
Get window id from evas_window_
swift-kim 0113bff
Re-format code
swift-kim File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've found something confusing (at least for gn novice): the value of
target_name
within the body ofshared_library
, i.e. between lines 85 and 164, is changed frommobile
/werable
/tv
/common
toflutter_tizen_mobile
/flutter_tizen_werable
/flutter_tizen_tv
/flutter_tizen_common
respectively.I'm not sure, if it's an issue, but it causes "undefined reference" errors when using code similar to the one from the diff from this comment #65 (comment) to extend
libs
, i.e.:I've printed the
target_name
values before, within and aftershared_library()
call (using this code: pwasowski2@0a41130) and here's what gn uses astarget_name
s:@swift-kim, is this change of
target_name
value desired?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@pwasowski2 You're right. My comment was misleading because I didn't test the change suggested in the comment.
You can either:
invoker.target_name
(instead oftarget_name
) insideshared_library()
profile = target_name
) outsideshared_library()
and use that insideshared_library()
Actually there is a caveat about this in the GN documentation: https://gn.googlesource.com/gn/+/master/docs/reference.md#var_target_name
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the explanation :)