| 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 'variables': { | 6 'variables': { |
| 7 'content_shell_product_name': 'Content Shell', | 7 'content_shell_product_name': 'Content Shell', |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 'chromium_code': 1, | 243 'chromium_code': 1, |
| 244 }, | 244 }, |
| 245 'dependencies': [ | 245 'dependencies': [ |
| 246 'content_shell_lib', | 246 'content_shell_lib', |
| 247 'content_shell_pak', | 247 'content_shell_pak', |
| 248 ], | 248 ], |
| 249 'include_dirs': [ | 249 'include_dirs': [ |
| 250 '..', | 250 '..', |
| 251 ], | 251 ], |
| 252 'sources': [ | 252 'sources': [ |
| 253 'app/startup_helper_win.cc', |
| 253 'shell/shell_main.cc', | 254 'shell/shell_main.cc', |
| 254 ], | 255 ], |
| 255 'mac_bundle_resources': [ | 256 'mac_bundle_resources': [ |
| 256 'shell/mac/app.icns', | 257 'shell/mac/app.icns', |
| 257 'shell/mac/app-Info.plist', | 258 'shell/mac/app-Info.plist', |
| 258 ], | 259 ], |
| 259 # TODO(mark): Come up with a fancier way to do this. It should only | 260 # TODO(mark): Come up with a fancier way to do this. It should only |
| 260 # be necessary to list app-Info.plist once, not the three times it is | 261 # be necessary to list app-Info.plist once, not the three times it is |
| 261 # listed here. | 262 # listed here. |
| 262 'mac_bundle_resources!': [ | 263 'mac_bundle_resources!': [ |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 '-buildfile', | 573 '-buildfile', |
| 573 '<(DEPTH)/content/shell/android/content_shell_apk.xml', | 574 '<(DEPTH)/content/shell/android/content_shell_apk.xml', |
| 574 ] | 575 ] |
| 575 } | 576 } |
| 576 ], | 577 ], |
| 577 }, | 578 }, |
| 578 ], | 579 ], |
| 579 }], # OS=="android" | 580 }], # OS=="android" |
| 580 ] | 581 ] |
| 581 } | 582 } |
| OLD | NEW |