blob: ee925e87c95a9f6dfd9600d639675e8a298bf3b3 [file] [log] [blame]
[email protected]b88d2c62014-07-16 18:20:441# Copyright 2014 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{
6 'targets': [
7 {
dprankedb5527d72015-03-08 04:22:478 # GN: //components/session_manager/core
[email protected]b88d2c62014-07-16 18:20:449 'target_name': 'session_manager_component',
10 'type': '<(component)',
11 'dependencies': [
12 '../base/base.gyp:base',
13 ],
14 'include_dirs': [
15 '..',
16 ],
17 'defines': [
18 'SESSION_IMPLEMENTATION',
19 ],
20 'sources': [
[email protected]b88d2c62014-07-16 18:20:4421 'session_manager/core/session_manager.cc',
satoruxba9fc862015-02-17 01:16:4222 'session_manager/core/session_manager.h',
[email protected]b88d2c62014-07-16 18:20:4423 'session_manager/session_manager_export.h',
24 ],
[email protected]babc1482014-08-02 05:44:1325 'conditions': [
26 ['chromeos == 1', {
27 'dependencies': [
28 '<(DEPTH)/chromeos/chromeos.gyp:chromeos',
29 ],
30 }],
31 ],
[email protected]b88d2c62014-07-16 18:20:4432 },
33 ],
34}