| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'common', | 8 'target_name': 'common', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'variables': { | 10 'variables': { |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 'common/web_apps.cc', | 228 'common/web_apps.cc', |
| 229 'common/web_apps.h', | 229 'common/web_apps.h', |
| 230 'common/web_resource/web_resource_unpacker.cc', | 230 'common/web_resource/web_resource_unpacker.cc', |
| 231 'common/web_resource/web_resource_unpacker.h', | 231 'common/web_resource/web_resource_unpacker.h', |
| 232 'common/worker_thread_ticker.cc', | 232 'common/worker_thread_ticker.cc', |
| 233 'common/worker_thread_ticker.h', | 233 'common/worker_thread_ticker.h', |
| 234 'common/zip.cc', # Requires zlib directly. | 234 'common/zip.cc', # Requires zlib directly. |
| 235 'common/zip.h', | 235 'common/zip.h', |
| 236 'common/zip_internal.cc', | 236 'common/zip_internal.cc', |
| 237 'common/zip_internal.h', | 237 'common/zip_internal.h', |
| 238 'common/zip_reader.cc', |
| 239 'common/zip_reader.h', |
| 238 ], | 240 ], |
| 239 'conditions': [ | 241 'conditions': [ |
| 240 ['OS=="win"', { | 242 ['OS=="win"', { |
| 241 'include_dirs': [ | 243 'include_dirs': [ |
| 242 '<(DEPTH)/third_party/wtl/include', | 244 '<(DEPTH)/third_party/wtl/include', |
| 243 ], | 245 ], |
| 244 }], | 246 }], |
| 245 ['toolkit_uses_gtk == 1', { | 247 ['toolkit_uses_gtk == 1', { |
| 246 'dependencies': [ | 248 'dependencies': [ |
| 247 '../build/linux/system.gyp:gtk', | 249 '../build/linux/system.gyp:gtk', |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 'common/safe_browsing/csd.proto' | 429 'common/safe_browsing/csd.proto' |
| 428 ], | 430 ], |
| 429 'variables': { | 431 'variables': { |
| 430 'proto_in_dir': 'common/safe_browsing', | 432 'proto_in_dir': 'common/safe_browsing', |
| 431 'proto_out_dir': 'chrome/common/safe_browsing', | 433 'proto_out_dir': 'chrome/common/safe_browsing', |
| 432 }, | 434 }, |
| 433 'includes': [ '../build/protoc.gypi' ], | 435 'includes': [ '../build/protoc.gypi' ], |
| 434 }, | 436 }, |
| 435 ], | 437 ], |
| 436 } | 438 } |
| OLD | NEW |