Chromium Code Reviews| Index: chrome/chrome_browser_components.gyp |
| diff --git a/chrome/chrome_browser_components.gyp b/chrome/chrome_browser_components.gyp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..df2c90ae530635f80340c92fdf6c8776d3c0b844 |
| --- /dev/null |
| +++ b/chrome/chrome_browser_components.gyp |
| @@ -0,0 +1,29 @@ |
| +# Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +# |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +{ |
|
Jói
2012/08/21 12:17:08
I think this file should live at chrome/browser/co
Leandro Graciá Gil
2012/08/21 16:17:42
I'll be moving it then. Any requirements for JNI h
|
| + 'includes': [ |
| + 'browser/component/web_contents_delegate_android/web_contents_delegate_android.gypi' |
| + ], |
| + |
| + 'conditions': [ |
| + ['OS=="android"', { |
| + 'targets': [ |
| + { |
| + 'target_name': 'browser_component_jni_headers', |
| + 'type': 'none', |
| + 'sources': [ |
| + 'android/java/src/org/chromium/chrome/browser/component/web_contents_delegate_android/WebContentsDelegateAndroid.java', |
| + ], |
| + 'variables': { |
| + 'jni_gen_dir': 'chrome/browser_component', |
| + }, |
| + 'includes': [ '../build/jni_generator.gypi' ], |
| + }, |
| + ], |
| + }], |
| + ], |
| +} |
| + |