Henry Soang <[email protected]> writes:

> Hi Raphael,
>
> thanks for that.  So I tried to do a single line hack to the xwalk.gyp to
> include the '../third_party/libjingle/source/talk/libjingle_examples.gyp:*',
> but I guess it's probably a lot more work than that as I'm now indeed
> getting errors about "gyp: name 'build_with_chromium' is not defined while
> evaluating condition 'build_with_chromium==1'" afterwards all pointing to
> that line.
> I guess I'll need to study the gyp system a bit more.  Any  quick ideas are
> welcome still of course. :)

It depends on how you actually added that line. What I meant is that you
need to add it as a dependency of the 'xwalk' target, so xwalk.gyp
should look something like:

  ...
  {
    'target_name': 'xwalk',
    ...
    'dependencies': [
      '../third_party/libjingle/source/talk/libjingle_examples.gyp:*'
      'xwalk_runtime',
      'xwalk_pak',
    ],
    ...
  },
  ...
_______________________________________________
Crosswalk-help mailing list
[email protected]
https://lists.crosswalk-project.org/mailman/listinfo/crosswalk-help

Reply via email to