Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / native_client_sdk / src / libraries / gtest / library.dsc
blobe30acf9088f704709be0e751aa312f17e4e67cf8
2   'SEARCH': [
3     '.',
4     '../../../../testing/gtest/include/gtest',
5     '../../../../testing/gtest/include/gtest/internal',
6     '../../../../testing/gtest/src',
7   ],
8   'TARGETS': [
9     {
10       'NAME' : 'gtest',
11       'TYPE' : 'lib',
12       'SOURCES' : [
13         'gtest.cc',
14         'gtest-death-test.cc',
15         'gtest-filepath.cc',
16         'gtest-port.cc',
17         'gtest-printers.cc',
18         'gtest-test-part.cc',
19         'gtest-typed-test.cc',
20       ],
21       'INCLUDES': [
22         # See comment below about gtest-internal-inl.h
23         '$(NACL_SDK_ROOT)/include/gtest/internal',
24       ],
25     }
26   ],
27   'HEADERS': [
28     {
29       'FILES': [
30         'gtest-death-test.h',
31         'gtest.h',
32         'gtest-message.h',
33         'gtest-param-test.h',
34         'gtest_pred_impl.h',
35         'gtest-printers.h',
36         'gtest_prod.h',
37         'gtest-spi.h',
38         'gtest-test-part.h',
39         'gtest-typed-test.h',
40       ],
41       'DEST': 'include/gtest',
42     },
43     {
44       'FILES': [
45         'gtest-death-test-internal.h',
46         'gtest-filepath.h',
47         'gtest-internal.h',
48         'gtest-linked_ptr.h',
49         'gtest-param-util-generated.h',
50         'gtest-param-util.h',
51         'gtest-port-arch.h',
52         'gtest-port.h',
53         'gtest-string.h',
54         'gtest-tuple.h',
55         'gtest-type-util.h',
56       ],
57       'DEST': 'include/gtest/internal',
58     },
59     {
60       'FILES': [
61         'gtest-port.h',
62         'gtest-printers.h',
63       ],
64       'DEST': 'include/gtest/internal/custom',
65     },
66     {
67       # This is cheesy, but gtest.cc includes "src/gtest-internal-inl.h". Since
68       # gtest is not installed in the SDK, I don't really care about the
69       # directory layout.
70       # TODO(binji): If we decide to include gtest, put this file in a better
71       # spot.
72       'FILES': [
73         'gtest-internal-inl.h',
74       ],
75       'DEST': 'include/gtest/internal/src',
76     },
77   ],
78   'DEST': 'src',
79   'NAME': 'gtest',