OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'dependencies': [ | 6 'dependencies': [ |
7 'browser/speech/proto/speech_proto.gyp:speech_proto', | 7 'browser/speech/proto/speech_proto.gyp:speech_proto', |
8 '../base/base.gyp:base_static', | 8 '../base/base.gyp:base_static', |
9 '../crypto/crypto.gyp:crypto', | 9 '../crypto/crypto.gyp:crypto', |
10 '../google_apis/google_apis.gyp:google_apis', | 10 '../google_apis/google_apis.gyp:google_apis', |
11 '../net/net.gyp:net', | 11 '../net/net.gyp:net', |
12 '../skia/skia.gyp:skia', | 12 '../skia/skia.gyp:skia', |
13 '../sql/sql.gyp:sql', | 13 '../sql/sql.gyp:sql', |
14 '../third_party/re2/re2.gyp:re2', | 14 '../third_party/re2/re2.gyp:re2', |
15 '../third_party/zlib/google/zip.gyp:zip', | 15 '../third_party/zlib/google/zip.gyp:zip', |
16 '../third_party/zlib/zlib.gyp:zlib', | 16 '../third_party/zlib/zlib.gyp:zlib', |
17 '../ui/events/events.gyp:events', | 17 '../ui/events/events.gyp:events_base', |
18 '../ui/gfx/gfx.gyp:gfx', | 18 '../ui/gfx/gfx.gyp:gfx', |
19 '../ui/snapshot/snapshot.gyp:snapshot', | 19 '../ui/snapshot/snapshot.gyp:snapshot', |
20 '../ui/ui.gyp:ui', | 20 '../ui/ui.gyp:ui', |
21 '../ui/ui.gyp:ui_resources', | 21 '../ui/ui.gyp:ui_resources', |
22 ], | 22 ], |
23 'include_dirs': [ | 23 'include_dirs': [ |
24 '..', | 24 '..', |
25 '<(INTERMEDIATE_DIR)', | 25 '<(INTERMEDIATE_DIR)', |
26 ], | 26 ], |
27 'sources': [ | 27 'sources': [ |
(...skipping 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1223 'zygote/zygote_linux.h', | 1223 'zygote/zygote_linux.h', |
1224 'zygote/zygote_main_linux.cc', | 1224 'zygote/zygote_main_linux.cc', |
1225 # These files are generated by GRIT. | 1225 # These files are generated by GRIT. |
1226 '<(SHARED_INTERMEDIATE_DIR)/webkit/grit/devtools_resources.h', | 1226 '<(SHARED_INTERMEDIATE_DIR)/webkit/grit/devtools_resources.h', |
1227 '<(SHARED_INTERMEDIATE_DIR)/webkit/grit/devtools_resources_map.cc', | 1227 '<(SHARED_INTERMEDIATE_DIR)/webkit/grit/devtools_resources_map.cc', |
1228 '<(SHARED_INTERMEDIATE_DIR)/webkit/grit/devtools_resources_map.h', | 1228 '<(SHARED_INTERMEDIATE_DIR)/webkit/grit/devtools_resources_map.h', |
1229 '<(SHARED_INTERMEDIATE_DIR)/content/browser/tracing/grit/tracing_resources.h
', | 1229 '<(SHARED_INTERMEDIATE_DIR)/content/browser/tracing/grit/tracing_resources.h
', |
1230 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/grit/webui_resources_map.cc', | 1230 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/grit/webui_resources_map.cc', |
1231 ], | 1231 ], |
1232 'conditions': [ | 1232 'conditions': [ |
| 1233 ['toolkit_views==1', { |
| 1234 'dependencies': [ |
| 1235 '../ui/events/events.gyp:events', |
| 1236 ], |
| 1237 }], |
1233 ['OS!="win" and OS!="mac" and OS!="linux"', { | 1238 ['OS!="win" and OS!="mac" and OS!="linux"', { |
1234 'sources': [ | 1239 'sources': [ |
1235 'browser/gamepad/gamepad_platform_data_fetcher.cc', | 1240 'browser/gamepad/gamepad_platform_data_fetcher.cc', |
1236 ] | 1241 ] |
1237 }], | 1242 }], |
1238 ['OS=="ios"', { | 1243 ['OS=="ios"', { |
1239 'sources/': [ | 1244 'sources/': [ |
1240 # iOS only needs a small portion of content; exclude all the | 1245 # iOS only needs a small portion of content; exclude all the |
1241 # implementation, and re-include what is used. | 1246 # implementation, and re-include what is used. |
1242 ['exclude', '\\.(cc|mm)$'], | 1247 ['exclude', '\\.(cc|mm)$'], |
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1554 ['exclude', '^browser/speech/input_tag_speech_dispatcher_host\\.(cc|h)$'
], | 1559 ['exclude', '^browser/speech/input_tag_speech_dispatcher_host\\.(cc|h)$'
], |
1555 ], | 1560 ], |
1556 }, { # input_speech==1 | 1561 }, { # input_speech==1 |
1557 'dependencies': [ | 1562 'dependencies': [ |
1558 '../third_party/flac/flac.gyp:libflac', | 1563 '../third_party/flac/flac.gyp:libflac', |
1559 '../third_party/speex/speex.gyp:libspeex', | 1564 '../third_party/speex/speex.gyp:libspeex', |
1560 ], | 1565 ], |
1561 }], | 1566 }], |
1562 ], | 1567 ], |
1563 } | 1568 } |
OLD | NEW |