OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 { |
| 5 'conditions': [ |
| 6 ['OS != "ios"', { |
| 7 'targets': [ |
| 8 { |
| 9 'target_name': 'framelet_browser', |
| 10 'type': 'static_library', |
| 11 'dependencies': [ |
| 12 '../base/base.gyp:base', |
| 13 '../content/content.gyp:content_browser', |
| 14 '../content/content.gyp:content_common', |
| 15 'framelet_common' |
| 16 ], |
| 17 'include_dirs': [ |
| 18 '..', |
| 19 ], |
| 20 'sources': [ |
| 21 'framelet/browser/framelet_guest.h', |
| 22 'framelet/browser/framelet_guest.cc', |
| 23 ], |
| 24 }, |
| 25 { |
| 26 'target_name': 'framelet_common', |
| 27 'type': 'static_library', |
| 28 'dependencies': [ |
| 29 '../base/base.gyp:base', |
| 30 '../ipc/ipc.gyp:ipc', |
| 31 ], |
| 32 'include_dirs': [ |
| 33 '..', |
| 34 ], |
| 35 'sources': [ |
| 36 'framelet/common/framelet_guest_constants.cc', |
| 37 'framelet/common/framelet_guest_constants.h', |
| 38 'framelet/common/framelet_guest_messages.h', |
| 39 ] |
| 40 }, |
| 41 { |
| 42 'target_name': 'framelet_renderer', |
| 43 'type': 'static_library', |
| 44 'dependencies': [ |
| 45 '../base/base.gyp:base', |
| 46 '../content/content.gyp:content_common', |
| 47 '../content/content.gyp:content_renderer', |
| 48 '../third_party/WebKit/public/blink.gyp:blink', |
| 49 '../v8/tools/gyp/v8.gyp:v8', |
| 50 'framelet_common' |
| 51 ], |
| 52 'include_dirs': [ |
| 53 '..', |
| 54 ], |
| 55 'sources': [ |
| 56 'framelet/renderer/framelet_guest_container.cc', |
| 57 'framelet/renderer/framelet_guest_container.h', |
| 58 ], |
| 59 }, |
| 60 ], |
| 61 }] |
| 62 ] |
| 63 } |
OLD | NEW |